| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 4183 人关注过本帖
标题:<求助>编程问题
只看楼主 加入收藏
shodawn
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2016-3-1
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:3 
<求助>编程问题
求多个整数和,输入非数字才开始求和,帮我看看
#include<stdio.h>
int main()
{
    int sum=0,value=0;
    while(scanf("%d",&value))
    {
        sum+=value;
    }
    printf("%d",sum);
    return 0;
}
搜索更多相关主题的帖子: return 
2016-03-01 19:51
yangfrancis
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:贵宾
威 望:141
帖 子:1510
专家分:7661
注 册:2014-5-19
收藏
得分:7 
运行无误
2016-03-01 20:23
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:528
帖 子:9025
专家分:54030
注 册:2011-1-18
收藏
得分:7 
    while(scanf("%d",&value))
    {
        sum+=value;
    }
你是如何结束这个循环的?

“输入非数字才开始求和” --- 这是你的要求呢,还是你想解决掉的bug?
2016-03-02 08:24
农民工
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:21
帖 子:109
专家分:639
注 册:2015-8-22
收藏
得分:7 
有什么问题吗?
Return Value

Both scanf and wscanf return the number of fields successfully converted and assigned; the return value does not include fields that were read but not assigned. A return value of 0 indicates that no fields were assigned. The return value is EOF for an error or if the end-of-file character or the end-of-string character is encountered in the first attempt to read a character.

2016-03-03 15:53
快速回复:<求助>编程问题
数据加载中...
 
   



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

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