標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2019-8-9 19:24
標題:
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;
}
複製代碼
作者:
施褕均
時間:
2019-8-9 19:45
#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;
}
複製代碼
作者:
李宇澤
時間:
2019-8-9 19:46
#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;
}
複製代碼
作者:
董宸佑
時間:
2019-8-9 19:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s;
cout<<"報上你的成績: ";
cin>>s;
if(s>=60)
cout<<"你及格了,啊不就好棒棒"<<endl;
else
cout<<"到底有沒有在唸書啊"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孫嘉駿
時間:
2019-8-9 19:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入您成績: ";
cin>>x;
if(x>=60)
{
cout<<"恭喜你及格了!"<<endl;
}else
{
cout<<"不及格,再接再厲。"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林政瑜
時間:
2019-8-9 19:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s;
cout<<"考幾分啦";
cin>>s;
if(s>85)
cout<<"再騙啊"<<endl;
else
cout<<"好誠實啊"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-8-9 19:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float s;
cout<<"輸入你的成績";
cin>>s;
if(s>=80)cout<<"棒棒";
else cout<<"死";
system("pause");
return 0;
}
複製代碼
作者:
黃辰昊
時間:
2019-8-9 19:47
#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;
}
複製代碼
作者:
黃宥華
時間:
2019-8-9 19:49
#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;
}
複製代碼
作者:
楊佑諺
時間:
2019-8-9 19:50
#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;
}
複製代碼
作者:
蔡忻霓
時間:
2019-8-9 19:52
#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;
}
複製代碼
作者:
余有晉
時間:
2019-8-9 20:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score>=90)
{給你買玩具!
}else
{不及格!你給我在外面脫褲子,露出你的大象,在外面跳大象舞!
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2