標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2017-2-3 15:42
標題:
if...else 判斷式
本帖最後由 tonyh 於 2017-2-3 16:47 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
cout<<"恭喜你! 及格了!";
else
cout<<"不及格... 斬!";
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂亮逵
時間:
2017-2-3 16:04
#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-2-3 16:06
#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-2-3 16:07
本帖最後由 柯識一 於 2017-2-3 16:11 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60,score<=100)
{
cout<<"恭喜你!及格了!"<<endl;
}else
{
cout<<"不 及格...斬"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳孟軒
時間:
2017-2-3 16:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"輸入你的成績";
cin>>score;
if(score>=60)
{
cout<<"Good job"<<endl;
}else
{
cout<<"bad"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳宇翔
時間:
2017-2-3 16:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"說出你的年齡:";
cin>>age;
if(age>=45)
{
cout<<"恭喜你,你已經邁入更年期了";
}
else
{
cout<<"滾吧!屁孩";
}
system("pause");
return 0;
}
複製代碼
作者:
邵顯茗
時間:
2017-2-3 16:09
#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-2-3 16:12
本帖最後由 tonyh 於 2017-2-4 13:51 編輯
#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-2-3 16:12
#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-2-3 16:20
#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-2-3 16:23
#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-2-3 16:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入您的年齡: ";
cin>>age;
if(age<12)
{
cout<<"您正處於歡樂童年"<<endl;
}
else if(age<30)
{
cout<<"您正處於花樣年華"<<endl;
}
else if(age<50)
{
cout<<"您正處於壯年時期"<<endl;
}
else if(age<65)
{
cout<<"您正處於更年期"<<endl;
}
else if(age<100)
{
cout<<"您是樂活銀髮"<<endl;
}
else if(age>100)
{
cout<<"您是一位人瑞啊!!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張凱婷
時間:
2017-2-3 16:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報你的成績:";
cin>>score;
if(score<60)
{
cout<<"再加油"<<endl;
}
else if(score>=60)
{
cout<<"再努力了";
}
system("pause");
return 0;
}
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2