首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴鱼游海底的代码贴C语言
#include"stdio.h"
int max(int a,int b)
{
int max=(a>b)?a:b;
return max;
}
void main ()
{
int a,b;
printf("输入两个整数:");
scanf("%d%d",&a,&b);
printf("%d\n",max(a,b));
......................
阅读全部 | 2015年4月18日 11:56
#include"stdio.h"
int main()
{
int a,b;
printf("输入两个整数:");
scanf("%d%d",&a,&b);
if(a>b)printf("max=%d\n",a);
else printf("max=%d\n",b);
return 0;
}
阅读全部 | 2015年4月18日 11:49
1
鱼游海底