c语言程序代码 #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*