标签:之间 pac pre stream else style a+b end main
1 #include<iostream> 2 using namespace std; 3 4 int main() 5 { 6 int n; 7 cin>>n; 8 long long int a,b,c; 9 10 for(int i=0;i<n;i++) 11 { 12 cin>>a>>b>>c; 13 if(a+b>c) 14 cout<<"Case #"<<i+1<<": true"<<endl; 15 else 16 cout<<"Case #"<<i+1<<": false"<<endl; 17 } 18 19 return 0; 20 }
1.考虑数的大小 以及相加后的大小 使用long long int
2.i的大小和输出的序号之间差1
标签:之间 pac pre stream else style a+b end main
原文地址:https://www.cnblogs.com/alwayszzj/p/11267174.html