Board logo

標題: 【3-1】if...else 判斷式 [打印本頁]

作者: 王瑞喻    時間: 2020-1-21 16:42     標題: 【3-1】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<<"恭喜你! 及格了!"<<endl;
  12.    }else
  13.    {
  14.         cout<<"不及格~ 斬!"<<endl;
  15.    }
  16.    system("pause");   
  17.    return 0;
  18. }
複製代碼

作者: 李益豪    時間: 2020-1-22 13:27

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   int score;
   cout<<"報上你的成績: ";
   cin>>score;
   if(score>=60)
   {
        cout<<"恭喜你! 及格了!"<<endl;
   }else
   {
        cout<<"不及格~ 斬!"<<endl;
   }
   system("pause");   
   return 0;
}
作者: 紀光晏    時間: 2020-1-22 13:28

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   int score;
   cout<<"報上你的成績: ";
   cin>>score;
   if(score>=60)
   {
        cout<<"恭喜你! 及格了!"<<endl;
   }else
   {
        cout<<"不及格~ 斬!"<<endl;
   }
   system("pause");   
   return 0;
}
複製代碼
作者: 吳政融    時間: 2020-1-22 13:29

  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<<"恭喜你! 及格了!"<<endl;
  12.    }else
  13.    {
  14.         cout<<"不及格~ 斬!"<<endl;
  15.    }
  16.    system("pause");   
  17.    return 0;
  18. }
複製代碼

作者: 辛秉宸    時間: 2020-1-22 13:32

  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<<"恭喜你! 及格了!"<<endl;
  12.    }else
  13.    {
  14.         cout<<"不及格~ 斬!"<<endl;
  15.    }
  16.    system("pause");   
  17.    return 0;
  18. }
複製代碼

作者: 張宏淯    時間: 2020-1-22 13:32

  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<<"恭喜你! 及格了!"<<endl;
  12.    }else
  13.    {
  14.         cout<<"不及格~ 再加油!"<<endl;
  15.    }
  16.    system("pause");   
  17.    return 0;
  18. }
複製代碼

作者: 廖文綺    時間: 2020-1-22 13:35

  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<<"恭喜你! 及格了!"<<endl;
  12.           }else
  13.           {
  14.               cout<<"不及格~ 斬!"<<endl;   
  15.           }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 郭閎宇    時間: 2020-1-22 13:36

  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<<"恭喜你!及格了"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格!斬!"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 張家瑜    時間: 2020-1-22 13:36

  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<<"恭喜你!及格了!"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格~ 斬!"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }                     
複製代碼

作者: 李畇學    時間: 2020-1-22 13:39

  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<<"恭喜你!及格了!"<<endl;            
  12.     }else  
  13.     {
  14.            cout<<"不及格~斬!"<<endl;  
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 孫于晞    時間: 2020-1-22 13:40

  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<<"恭喜你!及格了!"<<endl;
  12.     }else
  13.     {
  14.     cout<<"不及格~斬!"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }                  
複製代碼

作者: 王小函    時間: 2020-1-22 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>=60)
  10.     {
  11.       cout<<"恭喜你! 及格了!"<<endl;
  12.     }else
  13.     {
  14.       cout<<"不及格~ 斬!"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;   
  18. }
複製代碼

作者: 魏丞妤    時間: 2020-1-22 13:45

  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<<"恭喜你!及格了!"<<endl;
  12.     }else                  
  13.     {                     
  14.         cout<<"不及格~斬!"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
  19.                        
複製代碼

作者: 詹宜蓁    時間: 2020-1-22 13:46

[code]#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   int score;
   cout<<"報上你的成績: ";
   cin>>score;
   if(score=60){
   cout<<"恭喜你!及格了!"<<endl;
     }else
    {
      cout<<"不及格~爛!"<<endl;
    }      
    system("pause");
    return 0;                        
     }
作者: 詹惇智    時間: 2020-1-22 13:47

  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<<"恭喜你!及格了!~"<< ensl;              
  12.    }else
  13.    {
  14. cout<<"不及格~~~斬"<< ensl;        
  15.    system("pause");   
  16.    return 0;
  17. }
複製代碼

作者: 張少瑋    時間: 2020-1-22 13: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<<"恭喜你! 及格了!"<<endl;
  12.        }else
  13.        {
  14.             cout<<"不及格~ 斬!"<<endl;
  15.             }
  16.             system("pause");
  17.             return 0;
  18.             }
複製代碼

作者: 王立凱    時間: 2020-1-22 13:52

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

作者: 楊淇鈞    時間: 2020-1-22 13:55

#include<iostream>
#include<cstdlib>
using namespace std;
int main()  
{
    int score;
   
    cout<<"報上你的成績:";
    cin>>score;
   
    if(score>=60){
       cout<<"恭喜你!及格了!"<<endl;
    }else{
       cout<<"不及格~爛"<<endl;
    }
   
     system("pause");
     return 0;
    }
作者: 張少愷    時間: 2020-1-22 13:55

  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<<"恭喜你! 及格了!"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格~ 斬!"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 蔡鎧任    時間: 2020-1-22 13:56

  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<<"恭喜你! 及格了!"<<endl;
  12.     }else
  13.     {
  14.        cout<<" 不及格~ 斬!"<<endl;   
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 鍾金恩    時間: 2020-1-22 13:56

  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<<"恭喜你!及格了!"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格~斬!"<<endl;
  15.     }
  16.     system("pause");
  17.     return 0;
  18. }   
複製代碼

作者: 張家宏    時間: 2020-1-22 14:02

  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<<"恭喜你!及格了!"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格~拖下去斬!"<<endl;
  15.     }
  16.          system("pause");
  17.          return 0;
  18. }         
  19.          
  20.    
複製代碼

作者: 鍾金恩    時間: 2020-1-22 14:21

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      
  7.      for(int i=1;i<=100;i++)
  8.     {
  9.           cout<<i<<endl;
  10.     }
  11.     system("pause");
  12.     return 0;   
  13. }   
複製代碼

作者: 紀光晏    時間: 2020-1-22 15:30

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   int score;
   cout<<"報上你的成績: ";
   cin>>score;
   if(score>=60)
   {
        cout<<"恭喜你! 及格了!"<<endl;
   }else
   {
        cout<<"不及格~ 斬!"<<endl;
   }
   system("pause");   
   return 0;
}




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