返回列表 發帖

[家教作業2022/5/30] 0~20數字判斷練習

本帖最後由 鄭繼威 於 2022-6-13 20:14 編輯


設計一個輸入數字可以判斷範圍:
0~10
11~20
0~20以外
本帖隱藏的內容需要回復才可以瀏覽
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int n;
  7.     cout<<"請輸入數字: ";
  8.     cin>>n;
  9.     if(n<=10 && n>=0)
  10.         cout<<"0~10之間"<<endl;
  11.     else if(n<=20 && n>=10)
  12.         cout<<"10~20之間"<<endl;
  13.     else
  14.         cout<<"0~20以外"<<endl;
  15.         system("pause")
  16.         return 0;
  17. }
複製代碼

TOP

我不知道是不是對的(我是想試試看)

TOP

老師我不知道我的程式是不是對的。

TOP

老師,我不知道我的程式是不是對的°

TOP

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;

  4. int main(){
  5.         int number;        //宣告變數存使用者輸入的數字
  6.         cout<<"請輸入數字:";        //cout輸出
  7.         cin>>number;        //取得使用者輸入的數字               
  8.         //開始判斷
  9. //        0~10
  10.         if(number>=0 and number<=10){
  11.                 cout<<"0~10"<<endl;
  12.         }
  13. //        11~20
  14.         else if(number>=11 and number<=20){
  15.                 cout<<"11~20"<<endl;
  16.         }
  17. //21~30
  18.         else if(number>=21 && number<=30){
  19.                 cout<<"21~30"<<endl;
  20.         }

  21.         else{
  22.                 cout<<"0~30以外"<<endl;
  23.         }
  24.        
  25.         system("pause");
  26.         return 0;
  27. }
複製代碼

TOP

返回列表