標題:
if...else 判斷式
[打印本頁]
作者:
王瑞喻
時間:
2020-3-27 12:44
標題:
if...else 判斷式
本帖最後由 王瑞喻 於 2020-3-27 12:46 編輯
#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;
}
複製代碼
作者:
鐘彥博
時間:
2020-3-28 16:22
#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;
}
複製代碼
作者:
呂尚霖
時間:
2020-3-28 16:25
#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;
}
複製代碼
作者:
林帛毅
時間:
2020-3-28 16:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re :
cout<<"請輸入你的成績: ";
cin>>score;
if(score>=99)
{
cout<<"恭喜你及格了,給你飯吃"<<endl;
}
else
{
cout<<"不及格,滾出家門"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
董定宇
時間:
2020-3-28 16:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re:
cout<<"書乳你ㄉ沉積: ";
cin>>score;
if (score>=100)
{
cout<<"你過了,應該ㄉ"<<endl;
}
else
{
cout<<"不及格,不用活了。去死ㄅ"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
夏子涵
時間:
2020-4-11 14:57
#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;
}
複製代碼
作者:
謝承志
時間:
2020-4-16 18:23
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2