从键盘上输入任意一个整数x,编程计算x的每一位数字相加之和,用C语言编写,下面我编写的程序哪错了

例如,输入x为1234,则分离出1,2,3,4四个数字,然后计算1+2+3+4=10,并输出10,#include<stdio.h>#include<stdlib.h>v... 例如,输入x为1234,则分离出1,2,3,4四个数字,然后计算1+2+3+4=10,并输出10,

#include <stdio.h>
#include <stdlib.h>
void main()
{
int n=0;
while("getchar()"!="\n")
{
n+=getchar();

}
printf("%d",n);
system("pause");
}
展开
 我来答
沧海雄风2009
2018-03-14 · TA获得超过1.1万个赞
知道大有可为答主
回答量:8525
采纳率:79%
帮助的人:2740万
展开全部
#include <stdio.h>
#include <stdlib.h>
void main()
{
int n=0,ch;
while((ch=getchar())!='\n')   //用ch保存getchar接收到的输入字符ascii码
{
    n+=(ch-'0');     //-'0' 是ascii码转数字

}
printf("%d",n);
system("pause");
}

55555
25请按任意键继续. . .
Press any key to continue
zsx10110
2013-07-05 · TA获得超过8871个赞
知道大有可为答主
回答量:2369
采纳率:66%
帮助的人:3058万
展开全部
#include <stdio.h>
#include <stdlib.h>
void main()
{
int n=0;
char c[10] = {0};
while((c[0] = getchar())!='\n')//因为你getchar 获得的是char类型的 所以你必须转换为int 
{

n+=atoi(c);

}
printf("%d",n);
system("pause");
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
shine1991
科技发烧友

推荐于2018-03-14 · 智能家居/数码/手机/智能家电产品都懂点
知道顶级答主
回答量:4.7万
采纳率:82%
帮助的人:2.3亿
展开全部
#include <stdio.h>
#include <stdlib.h>
void main()
{
    int n=0,x;
    scanf("%d",&x);
    for(n=0;x;x/=10)
    {
        n+=x%10;
    }
    printf("%d",n);
    system("pause");
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
认不倒你
2013-07-05 · TA获得超过666个赞
知道小有建树答主
回答量:820
采纳率:50%
帮助的人:355万
展开全部




#include <stdio.h>
#include <stdlib.h>
int main()
{
    int n=0;
    char ch;

    while((ch=getchar())!='\n')
    {
        n+=ch-'0';
    }
    printf("%d\n",n);
    system("pause");
}
追问
ch-'0'是什么意思
追答
ch为char类型,假设是'6'ch-'0'等于6,也就是通常说的六.
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-07-05
展开全部
#include<iostream>
using namespace std;
void main(){
int n;
int a;
int sum=0;
cin>>n;
while(n!=0){
a=n%10;
cout<<a<<endl;
sum+=a;
n/=10;
}
cout<<sum<<endl;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式