您的位置:首页 > 其它

hdu-2096-小明A+B

2013-11-18 23:04 513 查看
#include<stdio.h>

int main()

{
int s;
scanf("%d",&s);
while(s--)
{
int a,b;
scanf("%d%d",&a,&b);
a%=100;
b%=100;
printf("%d\n",(a+b)%100);
}
return 0;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: