標題:
if...else 判斷式
[打印本頁]
作者:
鄭繼威
時間:
2022-4-1 23:06
標題:
if...else 判斷式
本帖最後由 鄭繼威 於 2022-8-13 01:23 編輯
雙向判斷式語法
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;
}
複製代碼
[小補充]if的條件那邊是可以放布林值的
作者:
鄭繼威
時間:
2022-4-6 21:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
//變數型態 變數名字=賦予值
int score;
cout<<"請輸入SCORE:";
cin>>score;
if(score>=60){
cout<<"及格"<<endl;
}
else{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃柏青
時間:
2022-4-6 21:09
#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;
}
複製代碼
作者:
李彣
時間:
2022-4-6 21:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入SCORE:";
cin>>score;
if(score>=60)
{
cout<<"及格"<<endl;
}
else
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳牧謙
時間:
2022-4-6 21:12
本帖最後由 陳牧謙 於 2022-4-19 16:58 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
int score;
re:
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
cout<<"恭喜你及格了,給你糖吃!"<<endl;
else
cout<<"不及格!打屁股!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
齊振睿
時間:
2022-4-6 21:15
本帖最後由 齊振睿 於 2022-4-6 21: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;
}
複製代碼
作者:
黃裕恩
時間:
2022-4-6 21: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;
}
複製代碼
作者:
李睿宸
時間:
2022-4-19 20:00
本帖最後由 李睿宸 於 2022-4-19 20:24 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入成績:";
cin>>score;
if(score>=60)
cout<<"及格"<<endl;
else
cout<<"不及格"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭繼威
時間:
2022-5-16 19:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
//1.宣告變數
int score;
//2.輸出請使用者輸入成績
cout<<"請輸入你的成績:";
//3.取得使用者輸入的成績
cin>>score;
//4.開始判斷(if-else)
//ex:60分以上都可以買東西
if(score>=60){
cout<<"恭喜你及格了,給你糖吃!"<<endl;
}
else{
cout<<"不及格!打屁股!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林劭澧
時間:
2022-5-16 19:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score>59)
cout<<"及格"<<endl;
else
cout<<"不及格"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林劭杰
時間:
2022-5-16 19:49
#incude<iostr>
#include<cstdlib>
using namespace std;
int main()
{2
int score;
re:
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
cout<<"恭喜你及格了,給你糖吃!"<<endl;
else
cout<<"不及格!打屁股!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2