標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2017-7-5 11:05
標題:
if...else 判斷式
本帖最後由 tonyh 於 2017-7-5 11: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;
}
複製代碼
作者:
蒙鎧柔
時間:
2017-7-5 11:24
本帖最後由 蒙鎧柔 於 2017-7-5 11:27 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"your score:";
cin>>score;
if(score>=60)
{
cout<<"pass"<<endl;
}else
{
cout<<"fail"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳睿橙
時間:
2017-7-5 11:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入成績";
cin>>score;
if(score>=60)
{ cout<<"恭喜你及格!";
}else
{ cout<<"不及格~~~請補考!!";
}
system("pause");
return 0;
}
複製代碼
作者:
陳廷森
時間:
2017-7-5 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入成績"<<endl;
cin>>score;
if(score>=60){
cout<<"恭喜及格!"<<endl;
}else{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
莊鎵伃
時間:
2017-7-5 11:42
#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;
}
複製代碼
作者:
吳秉翰
時間:
2017-7-5 11:44
#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;
}
複製代碼
作者:
鄭宗富
時間:
2017-7-5 11: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;
}
複製代碼
作者:
陳泓翰
時間:
2017-7-5 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你!及格";
}else
{
cout<<"不及格!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳守柔
時間:
2017-7-5 11:55
#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