> 其他 >
.c语言编程:输入一个正整数,统计该数的各位数字中零的个数,并求各位数字中的最大者.
人气:250 ℃ 时间:2019-10-10 08:03:15
解答
#include<stdio.h>
int main()
{
int n,max=-1,s=0;
scanf("%d",&n);
while(n)
{
if(n%10==0)s++;
if(n%10>max)max=n%10;
n/=10;
}
printf("0:%d\nmax=%d\n",s,max);
return 0;
}
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版