標題:
if...else 判斷式
[打印本頁]
作者:
許婷芳
時間:
2019-8-9 17:23
標題:
if...else 判斷式
[attach]6942[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score; //變數名稱與要做的事有一定程度的相關
.....
cout<<".....";
cin>>score;
if(.......)
cout<<"....."<<endl;
else
cout<<"....."<<endl;
.......
system("pause");
return 0;
}
複製代碼
作者:
謝以愛
時間:
2019-8-9 19:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績:"<<endl;
cin>>score;
if(score>=60)
cout<<"恭喜你及格了!給你糖吃!"<<endl;
else
cout<<"不及格!打屁股!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
謝以恩
時間:
2019-8-9 19:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re:
cout<<"輸入你的成績"<<endl;
cin>>score;
if(score>=60)
{
cout<<"恭喜你及格了,給你糖吃!"<<endl;
}
else
cout<<"不及格,打屁股!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
廖文綺
時間:
2019-8-9 20: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;
}
複製代碼
作者:
林祐霆
時間:
2019-8-9 20:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入你的成績(絕對不可以說謊喔)"<<endl;
cin>>a;
if(a<=59&&a>0)
cout<<"再加油,不打你!"<<endl;
if(a<=84&&a>=60)
cout<<"你真棒!"<<endl;
if(a<100&&a>=85)
cout<<"我覺得你在說謊,禁足你3天!"<<endl;
if(a>100||a<0)
cout<<"謊報成績!永遠禁足!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪承廷
時間:
2019-8-9 20:08
[code]
#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;
}
[code]
作者:
蘇詠翔
時間:
2019-8-9 20:29
#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://seed.istak.org.tw/)
Powered by Discuz! 7.2