解题思路:
注意事项:
参考代码:
#include <stdio.h>
int main(void)
{
int n,max=0;
while (scanf("%d",&n)==1)
{
if(max<=n)
max=n;
if(n==0)
{
printf("%d\n",max);
max=0;
continue;
}
}
return 0;
}
0.0分
4 人评分
奖学金 (C++代码)浏览:2053 |
【数组的距离】 (C语言代码)浏览:787 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:699 |
【蟠桃记】 (C语言代码)浏览:697 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
printf基础练习2 (C语言代码)浏览:796 |
字符逆序 (C语言代码)浏览:645 |
1908题解浏览:680 |
1050题解(结构体数组与结构体指针的使用)浏览:1216 |
字符串的输入输出处理 (C语言代码)浏览:1085 |