PATB1011 A+B和C(15 分)
Posted hebust
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PATB1011 A+B和C(15 分)相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
int main()
{
int n;
scanf("%d",&n);
for(int i=1;i<=n;i++){
long long A,B,C;
scanf(" %ld%ld%ld",&A,&B,&C);
A+=B;
if(A>C)
printf("Case #%ld: true
",i);
else
printf("Case #%ld: false
",i);
}
return 0;
}
以上是关于PATB1011 A+B和C(15 分)的主要内容,如果未能解决你的问题,请参考以下文章