求和

题目链接 难度等级 完成状态 完成分数 最后编辑时间 需要注意
求和 ★☆☆☆☆ 答案正确 100 {{{time}}}
无法理解日期"{{{time}}}"无法理解日期"{{{time}}}"

题意

求n个数的和。

题解

入门题没什么好说的。

代码

1201.cpp代码已折叠
展开折叠内容
#include<cstdio>int main(){    int n,i,s=0;    scanf("%d",&n);    while(n--){        scanf("%d",&i);        s+=i;    }    printf("%d",s);    return 0;}

著作权声明[编辑]

关于[编辑]