標題:
if...else 判斷式
[打印本頁]
作者:
王瑞喻
時間:
2020-6-4 12:00
標題:
if...else 判斷式
本帖最後由 王瑞喻 於 2020-6-4 19:17 編輯
#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;
}
複製代碼
作者:
張微咏
時間:
2020-6-4 19:21
#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;
}
複製代碼
回復
1#
王瑞喻
作者:
吳東璘
時間:
2020-6-4 19:21
#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;
}
複製代碼
作者:
朱逸庭
時間:
2020-6-4 19:21
#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;
}
複製代碼
作者:
蔡昀妮
時間:
2020-6-4 19:23
#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;
}
複製代碼
作者:
李柏穎
時間:
2020-6-4 19:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score>=60)
cout<<"恭喜你及格了,給你糖吃!"<<endl;
else
cout<<"不及格!打屁股!"<<endl;3
system("pause");
return 0;
}
複製代碼
作者:
楊易
時間:
2020-6-4 19:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float s;
cout<<"請輸入你成績: ";
cin>> s;
if(s>=60)
cout<<"恭喜你及格了,給你糖吃!"<<endl;
else
cout<<"不及格!打屁股!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
潘堉恩
時間:
2020-6-4 19:27
#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