标签:can 测试用例 pts line 区间 ase str lin html
输入第 1 行给出正整数 T (≤10),是测试用例的个数。随后给出 T 组测试用例,每组占一行,顺序给出 A、B 和 C。整数间以空格分隔。
对每组测试用例,在一行中输出 Case #X: true
如果 A+B>C,否则输出 Case #X: false
,其中 X
是测试用例的编号(从 1 开始)。
4
1 2 3
2 3 4
2147483647 0 2147483646
0 -2147483648 -2147483647
Case #1: false
Case #2: true
Case #3: true
Case #4: false
1 #include<stdio.h>
2 #include<math.h>
3 int main()
4 {
5 int N,t=1;
6 long long int a,b,c,sum;
7 scanf("%d",&N);
8 for(int i=0;i<N;i++)
9 {
10 scanf("%lld %lld %lld",&a,&b,&c);
11 sum=a+b;
12 if(sum>c)
13 printf("Case #%d: true\n",t);
14 else
15 printf("Case #%d: false\n",t);
16 t++;
17 }
18 return 0;
19 }
标签:can 测试用例 pts line 区间 ase str lin html
原文地址:https://www.cnblogs.com/xwl3109377858/p/10204704.html