標題:
if...else 判斷式
[打印本頁]
作者:
歐柏罕
時間:
2017-9-23 15:02
標題:
if...else 判斷式
#include<iostream> //輸入輸出
#include<cstdlib> //主函式
using namespace std;
int main()
{
int score; //變數名稱與要做的事有一定程度的相關
cout<<"請輸入你的成績: ";
cin>>score;
if(score >= 60) // >59
cout<<"恭喜你及格了"<<endl;
else
cout<<"打屁股"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林峻安
時間:
2017-9-23 15:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入成績"<<endl;
cin>>score;
if(score>=60)
{
cout<<score<<"及格"<<endl;
}
else
{
cout<<score<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳秉翰
時間:
2017-9-23 15:10
#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-9-23 15:11
#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-9-23 15:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入成績:"<<endl;
cin>>score;
if(score>=60)
{
cout<<"恭喜你!及格了!"<<endl;
}
else
{
cout<<"加油!還差"<<60-score<<"分"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2017-9-23 15:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入成績:"<<endl;
cin >> score;
if(score>=9487)
cout<<"恭喜及格"<<endl;
else
cout<<"恭喜no及格"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2