标题:编程错误修改
只看楼主
b4spirit
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-11-10
 问题点数:0 回复次数:1 
编程错误修改

编程统计出一个整数的各位数字中零的个数,并求各位数字的最大者。
#include <stdio.h>
#include <string.h>
main()
{
long int m;
int i,x=0;
char gb[30],y='0';
scanf("%ld",&m);
itoa(m,gb,30);
for (i=0;gb[i]!='\0';i++)
{
if(gb[i]=='0')
x+=1;
if (gb[i]>=y)
y=gb[i];

}
printf("%d\n%c",x,y);
getch();
}
请问哪里有错啊

搜索更多相关主题的帖子: 编程 统计 include 
2006-11-15 22:03
b4spirit
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2006-11-10
得分:0 

编程统计出一个整数的各位数字中零的个数,并求各位数字的最大者。
#include <stdio.h>
#include <stdlib.h>
main()
{
long int m;
int i,x=0;
char gb[30],y='0';
scanf("%ld",&m);
itoa(m,gb,30);
for (i=0;gb[i]!='\0';i++)
{
if(gb[i]=='0')
x+=1;
if (gb[i]>=y)
y=gb[i];

}
printf("%d\n%c",x,y);
getch();
}
请问哪里有错啊

2006-11-15 22:19



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-103263-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.072455 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved