標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2019-5-11 11:14
標題:
if...else 判斷式
#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;
}
複製代碼
作者:
劉愷恩
時間:
2019-5-11 11:32
#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;
}
複製代碼
作者:
曾宥程
時間:
2019-5-11 11:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"what's your test score?";
cin>>score;
if(score>=60)
{
cout<<"A++!fantastic!!!"<<endl;
}else
{
cout<<"F--!!!see me after class!!!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-5-11 11:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=85)
{
cout<<"恭喜你!及格了!"<<endl;
}else
{
cout<<"不及格!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭哲維
時間:
2019-5-11 11:40
本帖最後由 郭哲維 於 2019-5-18 11:43 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score ;
cout<<"報上你的成績:";
cin>>score;
if(score>=123046)
{
cout<<"恭喜你及格了!"<<endl;
}else
{
cout<<"不及格...斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-5-11 11:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score; //變數名稱與要做的事有一定程度的相關
re:
cout<<"請輸入你的成績:";
cin>>score;
if(score>=80)
cout<<"恭喜你!及格了,帶你去買玩具!"<<endl;
else
cout<<"不及格!打屁股!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡承伭
時間:
2019-5-11 11:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
re:
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
cout<<"恭喜你及格!"<<endl;
else
cout<<"不及格..."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林孟蓁
時間:
2019-5-18 10:20
#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;
}
複製代碼
作者:
蔡少宇
時間:
2019-5-29 17:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score ;
cout<<"報上你的成績:";
cin>>score;
if(score>=100)
{
cout<<"恭喜你及格了!"<<endl;
}else
{
cout<<"不及格...斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
駱顗安
時間:
2020-4-16 16:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入你的成績: ";
cin>>a;
if(a>=60)
cout<<"恭喜及格了,給你糖吃"<<endl;
else
cout<<"不及格!打屁股"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2