请高手帮帮我编写这个求和的程序,用C语言
Problem Description
Hey,welcome to HDOJ(Hangzhou Dianzi University Online Judge).
In this problem,your task is to calculate SUM(n) = 1 + 2 + 3 + ...+ n.
Input
The input will consist of a series of integers n,one integer per line.
Output
For each case,output SUM(n) in one line,followed by a blank line.You may assume the result will be in the range of 32-bit signed integer.
Sample Input
1
100
Sample Output
1
5050
/*请注意几点,第一,可以一直输入并且每个输入占一行.第二,当输入完毕之后才将结果一起输出,且每个输出结果占一行,并且后边跟着一个空行.*\
使用EOF的方法,是ctl+z结束
请高手帮帮我编写这个求和的程序,用C语言
答案:1 悬赏:70 手机版
解决时间 2021-08-21 13:11
- 提问者网友:我是女神我骄傲
- 2021-08-21 01:05
最佳答案
- 五星知识达人网友:孤老序
- 2021-08-21 02:22
#include
int main()
{
int n,i;
while(scanf(%d,&n)!=EOF) /使用EOF/
{
long sum=0;
for(i=1;i
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯