標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2015-3-27 20:21
標題:
if...else 判斷式
#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;
}
複製代碼
作者:
曾挺桂
時間:
2015-3-27 20:21
//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;
}
複製代碼
作者:
林侑成
時間:
2015-3-27 20:22
#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;
}
複製代碼
作者:
沈子耕
時間:
2015-3-27 20:24
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入您的成績";
cin>>score;
if(score>=60)
{
cout<<"阿不就好棒棒"<<endl;
}
else
{
cout<<"遜掉了拉"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳思惟
時間:
2015-3-27 20:30
#include<iostream> //引入標頭檔 <基本輸入輸出> in & out stream
#include<cstdlib> //引入標頭檔 <基本函式庫> c standard library
using namespace std; //使用命名空間 std
int main() //主函式
{
re:
int x;
cout<<"輸入成績:"<<endl;
cin>>x;
if (x>=60)
{
cout<<"你好棒"<<endl;
}
else
{
cout<<"去罰站"<<endl;
}
system("pause"); //暫停
return 0; //回傳0到主控台告訴電腦,程式已成功執行
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2