返回列表 發帖

if...else if...else 判斷式



   關係運算
   == 等於
   <   小於
   >   大於
   <= 小於或等於
   >= 大於或等於
   !=  不等於

   邏輯運算
   && and
   ||  or
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {   
  6.     int score; //變數名稱與要做的事有一定程度的相關
  7.     re:
  8.     cout<<"請輸入你的成績: ";
  9.     cin>>score;
  10.     if(score==100) //在判斷兩邊的值是否相等,要用雙等號
  11.         cout<<"哇!滿分!"<<endl;
  12.     else if(score<100 && score>=60)
  13.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  14.     else if(score<60 && score>0)
  15.         cout<<"不及格!打屁股!"<<endl;
  16.     else if(score==0)
  17.         cout<<"零分?斬!"<<endl;
  18.     else
  19.         cout<<"輸入錯誤!斬!"<<endl;
  20.     goto re;
  21.     system("pause");
  22.     return 0;   
  23. }
複製代碼

#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
    re:
        int x;
    cout<<"請輸入你的成績";
    cin>>x;
    if(x==100)
    cout<<"哇!滿分"<<endl;
    else if(x<100&&x>60)
        cout<<"恭喜及格"<<endl;
    else if(x<60&&x>0)
        cout<<"不及格?斬!"<<endl;
    else if(x==0)
        cout<<"零分?斬!"<<endl;
    else
        cout<<"輸入錯誤"<<endl;

    goto re;
system("pause");
return 0;

TOP

#include <iostream>
#include <cstdlib>
using namespace std;

int main(){
    int score;

    re:
    cout<<"請輸入你的成績";
    cin>>score;
    if(score==100)
        cout<<"滿分"<<endl;
    else if(score<100&&score>=60)
        cout<<"及格"<<endl;
    else if(score<60&&score>0)
        cout<<"不及格"<<endl;
    else if(score==0)
        cout<<"零分?斬!"<<endl;
    else
        cout<<"輸入錯誤"<<endl;

    goto re;


    system ("pause");
    return 0;
}

TOP

  1. #include<iostream>   
  2. #include<cstdlib>      
  3. using namespace std;   
  4. int main()   
  5. {
  6.     int score;
  7.    
  8.     re:
  9.     cout<<"請輸入你的成績";
  10.     cin>>score;
  11.     if(score==100)
  12.         cout<<"哇!滿分!"<<endl;
  13.     else if(score<100 && score>=60)
  14.         cout<<"恭喜你及格了!給你糖吃!"<<endl;
  15.     else if(score<60 && score>0)   
  16.         cout<<"不及格"<<endl;
  17.     else if(score==0)   
  18.         cout<<"零分?斬!"<<endl;
  19.     else
  20.         cout<<"輸入錯誤?斬!"<<endl;
  21.         goto re;               
  22.     system("pause");      
  23.     return 0;              
  24. }
複製代碼

TOP

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    re:
    int score;
    cout<<"請輸入你的成績:";
    cin>>score;
    if (score==100)
            cout<<"恭喜考100分~~"<<endl;
    else if (score>=60&&score<100)
            cout<<"恭喜及格!"<<endl;
    else if (score<60&&score>0)
            cout<<"不及格!"<<endl;
    else if (score==0)
            cout<<"考0分!"<<endl;
    else
            cout<<"重打!"<<endl;
    goto re;
    system("pause");
    return 0;
}

TOP

#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
    int score;
    re:
    cout<<"輸入你的成績:";
    cin>>score;
    if(score==100)
        cout<<"哇!滿分!!"<<endl;
    else if(score<100 && score>=60)
        cout<<"恭喜你及格!!"<<endl;
    else if(score<60 && score>0)
        cout<<"不及格!"<<endl;
    else if(score==0)
        cout<<"零分?"<<endl;
    else
        cout<<"輸入錯誤!"<<endl;
    goto re;
    system("pause");
    return 0;
}

TOP

返回列表