Board logo

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

作者: 方浩葦    時間: 2024-6-1 09:19     標題: 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. }
複製代碼

作者: 高湘庭    時間: 2024-6-1 15:00

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




}
作者: 劉奕劭    時間: 2024-6-1 15:02

#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;
}
作者: 李偈睿    時間: 2024-6-1 15:02

本帖最後由 李偈睿 於 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. }
複製代碼

作者: 林少謙    時間: 2024-6-1 15:03

#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;
}
作者: 洪榮辰    時間: 2024-6-1 15:10

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




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