返回列表 發帖

[作業] if... else 敘述

本帖最後由 tonyh 於 2011-9-17 17:23 編輯

試做一個判斷是否能騎摩托車的小程式 (輸入年齡, 判斷是否滿18歲)

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int old;
  6.     cout<<"請輸入你(妳)的年紀";
  7.     cin>>old;
  8.     if(score>=60)
  9.     {
  10.     cout<<"去駕照吧!這樣就可以騎車了!";
  11.     }
  12.     else
  13.     {
  14.     cout<<"抱歉歐!您還不能考駕照!!";
  15.     }
  16.     cout<<endl;
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()

  4. {
  5.   int age;
  6.   cout<<"請問您的年齡";
  7.   cin>>age;
  8.   if(age>=18)
  9.   {
  10.      cout<<"可以考照囉!";
  11.   }
  12.   else
  13.   {
  14.       cout<<"不準去考";
  15.   }  
  16.    cout<<endl;
  17.    
  18.    system("pause");
  19.    return 0;   
  20. }
複製代碼

TOP

  1. #include <iostream>

  2. using namespace std;

  3. int main()
  4. {
  5.     int age;
  6.     cout<<"請輸入你的年齡:";
  7.     cin>>age;
  8.     if(age>=18)
  9.     {
  10.     cout<<"恭喜你!成年了可以騎摩托車了!";
  11.     }
  12.     else
  13.     {
  14.     cout<<"哎呀!還沒成年!回家去吧";
  15.     }     
  16.    system("pause");

  17.    return 0;

  18. }
複製代碼

TOP

  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int age;
  6.     cout<<"請輸入你的歲數:";
  7.     cin>>age;
  8.     if(age>=18)
  9.     {
  10.         cout<<"恭喜你可以考駕照了了"  ;        
  11.     }
  12.     else
  13.     {
  14.         cout<<"哎呀 還沒成年 回家騎腳踏車吧!"  ;
  15.     }
  16.     cout<<endl;
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

TOP

  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int age;
  6.     cout<<"請問你滿幾歲了:";
  7.     cin>>age;
  8.     if(age>=18)
  9.     {
  10.       cout<<"恭喜你!你可以考駕照了!";
  11.     }
  12.     else
  13.     {
  14.         cout<<"不行!你太小了!";
  15.     }
  16.     cout<<endl;
  17.   
  18.    
  19.    
  20. system("pause");
  21.   return 0;   
  22. }
複製代碼

TOP

#include <iostream>
using namespace std;

int main()

{
    int age;
    cout<<"請問你滿幾歲:";
    cin>>age;
     
    if (age>=18)
   {  
       cout<<"恭喜你可以考駕照";
   }                    
    else
   {  
      cout << "不行,你還未成年";
}   
   
   
   system("pause");

   return 0;   
}

TOP

返回列表