Board logo

標題: if...else 判斷式 [打印本頁]

作者: 陳品肇    時間: 2019-1-29 09:14     標題: if...else 判斷式

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     int score;
  7.     cout<<"報上你的成績: ";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.         cout<<"恭喜你! 及格了!";
  12.     }
  13.     else
  14.     {
  15.         cout<<"不及格... 斬!";
  16.     }
  17.     cout<<endl;
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

作者: 龔家誼    時間: 2019-1-29 09:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5.   
  6. {  
  7.     int score;
  8.     cout<<"報上你的成績: ";
  9.     cin>>score;
  10.     if(score>=60)
  11.     {
  12.         cout<<"恭喜你! 及格了!";
  13.     }
  14.     else
  15.     {
  16.         cout<<"不及格... 斬!";
  17.     }
  18.     cout<<endl;
  19.     system("pause");
  20.     return 0;   
  21. }
  22.    
  23.    
  24.    
  25.    
  26.    
複製代碼

作者: 廖御晴    時間: 2019-1-29 09:44

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     int score;
  7.     cout<<"報上你的成績: ";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.         cout<<"恭喜你! 及格了!";
  12.     }
  13.     else
  14.     {
  15.         cout<<"不及格... 斬!";
  16.     }
  17.     cout<<endl;
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

作者: 孔令安    時間: 2019-1-29 09:47

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     int score;
  7.     cout<<"your exam";
  8. cin>>score;
  9.     if(score>=60)
  10.     {
  11. cout<<"鳩炰斕! 摯跡賸!";
  12.     }
  13.     else
  14.     {
  15.         cout<<"祥摯跡... !";
  16.     }
  17.     cout<<endl;
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

作者: 謝蓮金    時間: 2019-1-29 09:49

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請報上你的成績:";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.     cout<<"及格";            
  12.     }
  13.     else
  14.     {
  15.     cout<<"不及格";                        
  16.     }
  17.     cout<<endl;
  18.    
  19.     system("pause");
  20.     return 0;
  21.    
  22. }
複製代碼

作者: 謝仲恩    時間: 2019-1-29 09:50

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.   int a;
  7.   cout<<"報上你的成績:";
  8.   cin>>a;
  9.   if(a>=60)
  10. { cout<<"恭喜及格了:";
  11. }
  12.   else
  13.   {cout<<"不及格.....斬:";
  14.   }
  15.   cout<<endl;
  16.   system("pause");
  17.   return 0;
  18. }
複製代碼

作者: 李易展    時間: 2019-1-29 09:51

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入您的成績,沒及格就死定了:";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.     cout<<"恭喜你,及格囉";
  12.     }
  13.     else
  14.     {
  15.         cout<<"不及格ㄟ...去吃屎吧~~";
  16.         }
  17.         cout<<endl;
  18.         system("pause");
  19.         return 0;
  20. }
  21.    
複製代碼

作者: 廖思傑    時間: 2019-1-29 09:51

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {  
  6.     int score;
  7.     cout<<"報上你的成績: ";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.         cout<<"恭喜你! 及格了!";
  12.     }
  13.     else
  14.     {
  15.         cout<<"不及格... 斬!";
  16.     }
  17.     cout<<endl;
  18.     system("pause");
  19.     return 0;   
  20. }
複製代碼

作者: 洪藝瑄    時間: 2019-1-29 09:51

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入一個成績:";
  8.     cin>>score;
  9.     if(score>=60)
  10.     {
  11.         cout<<"及格";         
  12.     }else
  13.     {
  14.          cout<<"不及格"<<endl;
  15.     }
  16.    
  17.     system("pause");
  18.     return 0;
  19.    
  20.    
  21.    
  22.    
  23.    
  24.     }
複製代碼

作者: 傅永賢    時間: 2019-1-29 09:53

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int a,b;
  7.     cout<<"請輸入a的值";
  8.     cin>>a;
  9.     cout<<"請輸入b的值";
  10.     cin>>b;
  11.     if(a>b)
  12.    {
  13.     cout<<"a>b"<<endl;
  14.     }
  15.     else if(a<b)
  16.     {
  17.      cout<<"a<b"<<endl;
  18.      }   
  19.     else
  20.     {
  21.      cout<<"a=b"<<endl;
  22.      }   
  23.     system("pause");
  24.     return 0;
  25.     }
複製代碼

作者: 張正宜    時間: 2019-1-29 09:59

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int zoo;
  7.     cout<<"請輸入成績"<<endl;
  8.     cin>>zoo;
  9.     if(zoo>=60)
  10.     {cout<<"恭喜!及格了!";}
  11.     else
  12.     {cout<<"顆顆,再加油~";}
  13. system("pause");
  14. return 0;
  15. }
複製代碼

作者: 龔家誼    時間: 2019-1-29 13:42

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     int score;
  7.     cout<<"請輸入您的年齡";
  8.    cin>>score;
  9.    if(score>=18)
  10.    {
  11.         
  12.    cout<<"您可以考取駕照";
  13.    
  14.    
  15.     }else
  16.     {
  17.         cout<<"未滿18歲不能考取駕照";
  18.     }
  19.     cout<<endl;
  20.    


  21. system("pause");
  22.     return 0;
  23. }   
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2