B1001 A+B和C

B1001 A+B和C_第1张图片

#include 

int main()  {
	int T,tcase=1;
	scanf("%d",&T);
	while(T--){
		long long a,b,c;
		scanf("%lld%lld%lld",&a,&b,&c);
		if(a+b>c){
			printf("Case #%d: true\n",tcase++);
		}else{
			printf("Case #%d: false\n",tcase++);
		}
	}
	return 0;
}
这个题 我超时了呀 但还是过了呀。。while(T--)执行T次循环更简洁,然后int的范围是(2的31次方) 这里要用long 输入输出的格式都要是%lld。

你可能感兴趣的:(PAT,pat)