標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2016-9-24 13:47
標題:
if...else 判斷式
本帖最後由 tonyh 於 2019-5-11 10:59 編輯
#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;
}
複製代碼
作者:
曾彥翔
時間:
2016-9-24 14:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"很遺憾你竟然及格了~"<<endl;
}else
{
cout<<"恭喜你,不及格!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2016-9-24 14:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"你及格了!!"<<endl;
}else
{
cout<<"不及格!腰斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許紘誌
時間:
2016-9-24 14:28
#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;
}
複製代碼
作者:
朱聿謙
時間:
2016-9-24 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"及格"<<endl;
}
else
{
cout<<"不及格"<<endl;
}
system ("pause");
return 0 ;
}
複製代碼
作者:
譚暐霖
時間:
2016-9-24 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score;
re:
cout<<"請輸入你的成績: "<<endl;
cin>>score;
if(score>=60)
{
cout<<"及格 "<<endl;
}else
{
cout<<"不及格 "<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
洪榜蔓
時間:
2016-9-24 14:30
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜恭喜!"<<endl;
}else
{
cout<<"你竟然不及格!?"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳晉榕
時間:
2016-9-24 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"你及格了"<<endl;
}else
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡幸融
時間:
2016-9-24 14:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cin>>score;
if(score<=60)
{
cout<<"恭喜你及格了!"<<endl;
}else
{
cout<<"恭喜你沒及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2