返回列表 發帖

if...else 判斷式

  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>=60)
  11.         cout<<"恭喜你及格了,給你糖吃!"<<endl;
  12.     else
  13.         cout<<"不及格!打屁股!"<<endl;
  14.     goto re;
  15.     system("pause");
  16.     return 0;   
  17. }
複製代碼

#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
    re:
        int x;
    cout<<"請輸入你的成績";
    cin>>x;
    if(x>=60)
    {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>=60){
        cout<<"恭喜及格"<<endl;
    }else{
        cout<<"不及格"<<endl;
    }
    goto re;


    system ("pause");
    return 0;
}

TOP

本帖最後由 李偈睿 於 2024-6-1 15:04 編輯
  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>=60)
  12.     {
  13.             cout<<"恭喜及格"<<endl;
  14.     }
  15.     else
  16.     {
  17.             cout<<"不及格"<<endl;
  18.     }
  19.         goto re;               
  20.     system("pause");      
  21.     return 0;              
  22. }
複製代碼

TOP

#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
    re:
    int score;
    cout<<"請輸入你的成績:";
    cin>>score;
    if (score>=60)
            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>=60){
        cout<<"恭喜及格!"<<endl;
    }else{
        cout<<"不及格!"<<endl;
    }
    goto re;
    system("pause");
    return 0;
}

TOP

返回列表