標題:
if...else 判斷式
[打印本頁]
作者:
方浩葦
時間:
2024-6-1 09:19
標題:
if...else 判斷式
#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: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 編輯
#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: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