標題:
if...else 判斷式
[打印本頁]
作者:
王瑞喻
時間:
2020-7-25 18:24
標題:
if...else 判斷式
本帖最後由 王瑞喻 於 2020-7-25 19: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;
}
複製代碼
作者:
柏霖
時間:
2020-7-25 19:29
#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-25 19:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你及格了,給你糖吃!";
}
else
{
cout<<"不及格!打屁股!";
}
system("pause");
return 0;
}
複製代碼
作者:
蔡坤辰
時間:
2020-7-25 19:33
#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-25 19:35
#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-25 19:36
#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;
}
複製代碼
作者:
曾元瑜
時間:
2020-7-25 19:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績: ";
cin>> score;
if(score>=60)
{
cout<<"恭喜你及格了!";
}
else
{
cout<<"不及格?!真糟糕!";
}
system ("pause");
return 0;
}
複製代碼
作者:
文硯
時間:
2020-7-25 19:40
#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-25 19:43
#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-25 19:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"Insert your score: ";
cin>>score;
if (score>=60)
{
cout<<"Congrats, you've passed!"<<endl;
}
else
{
cout<<"You didn't pass!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張博竣
時間:
2020-7-25 19:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x ; //分數
cout<<"請輸入你的成績:";
cin>>x;
if(x>=60)
{
cout<<"恭喜你及格了,給你糖吃!";
}
else
{
cout<<"不及格!打屁股!";
}
system("pause");
return 0;
}
複製代碼
作者:
趙品昀
時間:
2020-7-25 19:44
#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-25 19: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;
}
複製代碼
作者:
張博翔
時間:
2020-7-25 19:48
#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;
}
複製代碼
作者:
洪勻蓁
時間:
2021-3-8 20:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int score;
cout<<"請輸入你的分數:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你及格!<3"<<endl;
}
else
{
cout<<"不及格,打屁股!:("<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2