[ZJ]b581: 一串加

題目:
http://zerojudge.tw/ShowProblem?problemid=b581

-----------------------------------------------------------------------------------------

#include<cstdio>
#define maxn 1000+1
typedef long long int LL;
int main()
{
int T;
scanf("%d",&T);
while(T-->0)
{
LL a = 0,ans = 0;
do{
scanf("%lld",&a);
ans = ans + a;
}while(getchar()!='\n');
printf("%lld\n",ans);
}
return 0;
}

留言

這個網誌中的熱門文章

[ZJ]b513: 判斷質數-商競103

[ZJ]d212: 東東爬階梯