標題:
if...else 判斷式
[打印本頁]
作者:
鄭繼威
時間:
2022-12-9 00:10
標題:
if...else 判斷式
雙向判斷式語法
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-12-9 20:39
#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-12-9 20:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int grade;
bool run=true;
while(run){
cout<<"輸入成績:";
cin>>grade;
if(grade>=60){
cout<<"及格"<<endl;
}
else{
cout<<"不及格"<<endl;
break;
}
}
system("pause");
return 0;
}
複製代碼
作者:
何權晉
時間:
2022-12-9 20:39
#include <iostream>
using namespace std;
int main()
{
int score;
cout<<"enter your score: ";
cin>>score;
if(score>=60){
cout<<"good job"<<endl;
}
else {
cout<<"mission failed, try harder next time"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
呂得銓
時間:
2022-12-9 20:42
本帖最後由 呂得銓 於 2022-12-9 20:46 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout <<"成績:";
cin>>score;
if(score>=60){
cout<<"ok"<<endl;
}
else{
cout<<"no"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳寶綸
時間:
2022-12-9 20:42
#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-12-9 20:45
本帖最後由 盧玄皓 於 2022-12-9 20:46 編輯
#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-12-9 20: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;
}
複製代碼
作者:
鄭繼威
時間:
2022-12-9 20:46
7
作者:
邵凡榛
時間:
2022-12-9 20:47
#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;
}
複製代碼
作者:
蔡沛倢
時間:
2022-12-9 20:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入你的成績";
cin>>a;
if (a==100){
cout<<"成績還不成績很好!可以了"<<endl;}
else if(a>=60){
cout<<"還可以,及格了"<<endl;}
else if(a>=1){
cout<<"不行!給我多寫幾本評量!"<<endl;}
else if(a==0){
cout<<"你敢考零分?"<<endl;}
system("pause");
return 0;
}
複製代碼
作者:
張桔熙
時間:
2022-12-9 20: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;
}
複製代碼
作者:
盧玄皓
時間:
2022-12-9 21:01
#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-12-16 19:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"Please type in your score...";
cin>>a;
if (a==100){
cout<<"Nice! Congrats on your full score."<<endl;}
else if(a>=60 && a<=100){
cout<<"Better luck next time!"<<endl;}
else if(a>=1 && a<=60){
cout<<"Try harder, you'll get there soon!"<<endl;}
else if(a==0){
cout<<"Bro are you okay?"<<endl;}
else {
cout<<"I sure hope you aren't drunk!"<<endl;}
system("pause");
return 0;
}
複製代碼
作者:
呂宗晉
時間:
2022-12-24 15: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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2