首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴Ruiniou的代码贴全部
//#include "header.h"?? //Anycodes includes the head file by default, needn't cancle the notation.
#include <stdio.h>
#include <stdlib.h>
int main()
{
int max(int x,int y);
int a,b,c,e,f;
scanf("%d,%d,%d",&a,&b,&c);
e=max(a,b);
f=max(e,c);
printf("max=%d\n",f);
return 0;
......................
阅读全部 | 2018年3月9日 21:32
1
Ruiniou