返回列表 發帖

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

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

回復 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;
}

TOP

#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;

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

#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;
}

TOP

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

TOP

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

TOP

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

TOP

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

TOP

  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# 王瑞喻

TOP

返回列表