#include<stdio.h>
int main(){
int T;
scanf("%d",&T);
int i;
double a,b,c;
int total=0;
int ans[11]={0};
for(i=0; i<T; i++){
scanf("%lf %lf %lf",&a,&b,&c);
total++;
if(a+b>c){
ans[i]=1;
}
}
if(ans[0]==1){
printf("Case #1: true");
}else{
printf("Case #1: false");
}
for(i=1; i<total; i++){
if(ans[i]==1){
printf("\nCase #%d: true",i+1);
}else{
printf("\nCase #%d: false",i+1);
}
}
return 0;
}
也简单的啦~