1 Star 0 Fork 0

hsmath/PAT advanced

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
1065.cpp 700 Bytes
一键复制 编辑 原始数据 按行查看 历史
Shuang Hu 提交于 2021-04-03 22:28 . Read long long int
/**
* @file 1065.cpp
* @author Shuang Hu <hsmath@ubuntu>
* @date Sat Apr 3 22:12:23 2021
*
* @brief A small program to calculate A+B in 64 bit
*
*
*/
#include <iostream>
using namespace std;
int main(){
long long int A,B,C;
int trynum;
bool greater;
cin>>trynum;
for(int i=1;i<=trynum;i++){
scanf("%lld%lld%lld",&A,&B,&C);
long long int sum=A+B;
if(A>0&&B>0&&sum<=0){//A+B break!
greater=true;
}else if(A<0&&B<0&&sum>=0){//A+B break!
greater=false;
}else{
if(sum>C){
greater=true;
}else{
greater=false;
}
}
if(greater==true){
cout<<"Case #"<<i<<": true"<<endl;
}else{
cout<<"Case #"<<i<<": false"<<endl;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/hsmath/pat-advanced.git
git@gitee.com:hsmath/pat-advanced.git
hsmath
pat-advanced
PAT advanced
master

搜索帮助