/*
* Main.c
* 1011. A+B和C
* Created on: 2014年8月30日
* Author: Boomkeeper
*********测试通过*******
*/ #include <stdio.h> void compare(long a,long b,long c){
if(a+b>c)
printf("true\n");
else
printf("false\n");
} int main(void){ int t;//题目中的t
int i;
long a,b,c; scanf("%d",&t);
getchar(); for(i=;i<t;i++){
scanf("%ld %ld %ld",&a,&b,&c);
getchar();
printf("Case #%i: ",i+);
compare(a,b,c);
} return ;
}
题目链接:
http://pat.zju.edu.cn/contests/pat-b-practise/1011
.