1011 A+B 和 C(数据类型归纳)
程序员文章站
2022-06-07 14:34:35
...
前言
这道题要注意数据长度
正文
#include <stdio.h>
int main(){
int T;
scanf("%d", &T);
for (int i=1; i<=T; i++){
long int A,B,C;
scanf("%ld %ld %ld", &A, &B, &C);
if (A+B>C) {
printf("Case #%d: true\n", i);
} else printf("Case #%d: false\n", i);
}
return 0;
}
更多:https://blog.csdn.net/weixin_42167759/article/details/80404815
上一篇: 1013 数素数 (20分)
下一篇: 1007 素数对猜想(简洁代码)