Ta上传的资源 (0)

#include "stdafx.h" int max(int a, int b, int c) { int temp; temp=a; if(temp < b) temp=b; if(temp < c) temp=c; return temp; } int main(int argc, char*