标签:16px scanf tput inpu 一个 code for can des
求n个数的和
第一行一个整数n
接下来一行n个整数
所有数的和
4
1 2 3 4
10
n<=100
所有数的和<=231-1
#include <stdio.h>
int main(){
int i,n,a[105],x=0;
scanf("%d",&n);
for(i=0;i<n;i++)scanf("%d",&a[i]);
for(i=0;i<n;i++)x+=a[i];
printf("%d\n",x);
return 0;
}
标签:16px scanf tput inpu 一个 code for can des
原文地址:http://www.cnblogs.com/codetogether/p/7064513.html