PAT-乙級-1011 A+B 和 C

來源:互聯網
上載者:User

標籤:long   htm   分析   c++   pat   else   case   pre   -o   

給定區間 [?] 內的 3 個整數 A、B 和 C,請判斷 A+B 是否大於 C。

輸入格式:

輸入第 1 行給出正整數 T (≤),是測試案例的個數。隨後給出 T 組測試案例,每組佔一行,順序給出 A、B 和 C。整數間以空格分隔。

輸出格式:

對每組測試案例,在一行中輸出 Case #X: true 如果 A+B>C,否則輸出 Case #X: false,其中 X 是測試案例的編號(從 1 開始)。

輸入範例:
41 2 32 3 42147483647 0 21474836460 -2147483648 -2147483647
輸出範例:
Case #1: falseCase #2: trueCase #3: trueCase #4: false


分析:
  注意輸出格式即可


//c++#include<iostream>using namespace std;int main(){  int n;  cin>>n;  for(int i=1;i<=n;i++){    long a,b,c;    cin>>a>>b>>c;    cout<<"Case #"<<i<<": ";    if(a+b>c)      cout<<"true"<<endl;    else      cout<<"false"<<endl;  }  return 0;}

 

PAT-乙級-1011 A+B 和 C

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.