C++ 代码
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
int main(){
int t,i=0;
cin>>t;
while(t--){
LL a,b,c;
cin>>a>>b>>c;
LL d=a+b;
int flag=1;
if(a>0&&b>0&&d<0) flag=0; //溢出 a、b均大于0,a+b<0
else if(a<0&&b<0&&d>=0) flag=1;//溢出a、b均小于0,a+b>=0
else if(d>c) flag=0;
if(flag==1) cout<<"Case #"<<++i<<": false"<<endl;
else cout<<"Case #"<<++i<<": true"<<endl;
}
}