Board logo

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

作者: 王瑞喻    時間: 2021-2-2 10:25     標題: 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. }
複製代碼

作者: 任璿    時間: 2021-2-2 10:37

#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;
}
作者: 李天輝    時間: 2021-2-2 10:37

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

作者: 李奕廷    時間: 2021-2-2 10: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>59)
  10.     {
  11.                 cout<<"及格"<<endl;
  12.     }else
  13.     {
  14.          cout<<"不及格"<<endl;     
  15.     }
  16.    system("pause");
  17.    return 0;
  18. }
複製代碼
回復 1# 王瑞喻
作者: 何若晴    時間: 2021-2-2 10:57

  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;
複製代碼

作者: 蔡宜均    時間: 2021-2-2 11:12

  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. }
複製代碼

作者: 方黃生    時間: 2021-2-2 13:19

  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. }
複製代碼

作者: 黃昱凱    時間: 2021-2-2 13:24

  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. }
複製代碼

作者: 莊念篪    時間: 2021-2-2 13:24

#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;
}
作者: 王偉樺    時間: 2021-2-2 13:27

  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.    
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 張晏滕    時間: 2021-2-2 13:31

  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. }
複製代碼

作者: 莊鈞宸    時間: 2021-2-2 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. }
複製代碼

作者: 吳亦勛    時間: 2021-2-2 13:37

  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<<"不及格~ 斬!"w<<endl;
  15.     }
  16.     system("pause");
  17.     return0;
  18. }
複製代碼

作者: 陳建承    時間: 2021-2-2 13:38

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

作者: 鄧崴仁    時間: 2021-2-2 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.    
  17.     system("pause");
  18.     return 0;
  19. }
複製代碼

作者: 王廷悠    時間: 2021-2-2 13:45

#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;
作者: 張鈊喬    時間: 2021-2-2 13:45

回復 1# 王瑞喻


    #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;
}
作者: 陳仕約    時間: 2021-2-2 13:46

  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. }
複製代碼

作者: 方凱聲    時間: 2021-2-2 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<<"恭喜你! 及格了!"<<endl;
  12.     }else
  13.     {
  14.          cout<<"恭喜你! 不及格!"<<endl;
  15.     }   
  16.     system("pause");
  17.     return 0;
  18. }
複製代碼

作者: 洪曼崴    時間: 2021-2-2 13:48

  1. #include<iostream>     //引入 <基本輸入輸出> 標頭檔 in & out stream
  2. #include<cstdlib>      //引入 <標準函式庫> 標頭檔 c standard library
  3. using namespace std;   //指定命名空間為 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;              //回傳0到主控台,告知該程式已成功執行
  18. }
複製代碼

作者: 怡璇    時間: 2021-2-2 13:48

  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. }
複製代碼

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





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