標題:
if...else 判斷式
[打印本頁]
作者:
王瑞喻
時間:
2020-7-24 15:34
標題:
if...else 判斷式
#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-7-24 16:00
#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-7-24 16:00
本帖最後由 邱玟瑜 於 2020-7-24 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;
}
複製代碼
作者:
黃韋誌
時間:
2020-7-24 16:00
#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-7-24 16:02
#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-7-24 16:03
#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-7-24 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;
}
複製代碼
作者:
何郡毓
時間:
2020-7-24 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 ;
}
複製代碼
作者:
周秉融
時間:
2020-7-24 16:05
#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-7-24 16:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入你的成績: ";
cin>>x;
if(x>=60)
cout<<"恭喜你及格了"<<endl;
else
cout<<"不及格"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2