標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2016-1-22 11:25
標題:
if...else 判斷式
本帖最後由 tonyh 於 2016-1-22 11:37 編輯
#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;
}
複製代碼
作者:
龔承緯
時間:
2016-1-22 11:40
#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;
}
作者:
洪億承
時間:
2016-1-22 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;
}
複製代碼
作者:
任立宇
時間:
2016-1-22 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"輸入成績";
cin>>score;
if(score>=60)
{
cout<<"及格喔 掰掰123"<<endl;
}else
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-1-22 11: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;
}
複製代碼
作者:
黃茂勛
時間:
2016-1-22 11: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;
}
複製代碼
作者:
潘彥勳
時間:
2016-1-22 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=90)
{
cout<<"你好棒!給你一兆美元"<<endl;
}else
{
cout<<"你不棒!給我一兆美元"<<endl;
}
system("pause");
return 0;
複製代碼
作者:
李啟綸
時間:
2016-1-22 11:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"please enter your grade: ";
cin>>score;
if(score>=60)
{
cout<<"congratulation!passed!"<<endl;
}else
{
cout<<"failed!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
巫沛庭
時間:
2016-1-22 11:48
#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;
}
複製代碼
作者:
巫晉宇
時間:
2016-1-22 11:52
#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;
}
複製代碼
作者:
龔承緯
時間:
2016-1-22 21:03
本帖最後由 龔承緯 於 2016-1-22 21:10 編輯
#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://istak.org.tw/seed/)
Powered by Discuz! 7.2