PTA 乙级 1011 A+B 和 C (15分)
Posted scp-514
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PTA 乙级 1011 A+B 和 C (15分)相关的知识,希望对你有一定的参考价值。
今日的简单一题
1 #include<iostream> 2 3 using namespace std; 4 5 int main() { 6 long a = 0, b = 0, c = 0; 7 int n = 0; 8 string judge[10]; 9 cin >> n; 10 for (int i = 0; i < n; ++i) { 11 cin >> a >> b >> c; 12 if (a + b > c) 13 judge[i] = "true"; 14 else 15 judge[i] = "false"; 16 } 17 for (int i = 0; i < n; ++i) { 18 cout << "Case #" << i + 1 << ": " << judge[i] << endl; 19 } 20 return 0; 21 }
以上是关于PTA 乙级 1011 A+B 和 C (15分)的主要内容,如果未能解决你的问题,请参考以下文章