3 4 1 2 3 4 5 1 2 3 4 5 3 1 2 3
10 15 6
#include<iostream> #include<cstdio> using namespace std; int main() { int n,k,a,sum; scanf("%d",&n); while(n--) { sum=0; scanf("%d",&k); for(int i=0;i<k;i++) { scanf("%d",&a); sum+=a; } if(n!=0) printf("%d\n\n",sum); else printf("%d\n",sum); } }
版权声明:本文为博主原创文章,未经博主允许不得转载。
HDU-1096-A+B for Input-Output Practice (VIII)(最后一行不输出空格)
原文地址:http://blog.csdn.net/qq_16542775/article/details/46893645