標題:
if...else判斷式
[打印本頁]
作者:
張翼安
時間:
2015-10-2 23:47
標題:
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-10-3 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score>=100)
{
cout<<"好棒棒!!"<<endl;
}else
{
cout<<"你是垃圾!!"<<endl;
}
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-10-3 11:39
本帖最後由 張健勳 於 2015-10-3 11:40 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score>=100)
{
cout<<"恭喜你及格了,好棒棒!"<<endl;
}else
{
cout<<"不及格!你爛到爆了 去吃垃圾吧!"<<endl;
}
system("pause");
return 0;
}
複製代碼
[fly]我叫做黑夜影武者 我會飛唷[/fly]
作者:
張文擇
時間:
2015-10-3 11:44
#include<iostream>w
#include<csydlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=100)
{
cout<<"好棒棒!"<<endl;
}else
{
cout<<"吃垃圾XD!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-10-3 11:45
本帖最後由 蔡庭豪 於 2015-10-17 11:08 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"輸入您成績:"<<endl;
cin>>x;
if(x>=80&&x<=100)
{
cout<<"好成績,甲等"<<endl;
}
else if(x>=60&&x<=79)
{
cout<<"普通成績,乙等"<<endl;
}
else if(x>=0&&x<=59)
{
cout<<"不及格成績,丙等,吃屎吧"<<endl;
}
else if(x>100&&x<0)
{
cout<<"你撒謊"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-10-3 11:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score==100)
{
cout<<"阿不就好棒棒"<<endl;
}else if(score>=60)
{
cout<<"垃圾一個"<<endl;
}else
{
cout<<"白癡!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-10-3 12:05
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入你的身高(cm):"<<x<<endl;
cin>>x;
cout<<"請輸入你的體重(kg):"<<y<<endl;
cin>>y;
cout<<"您的bmi值:"<<x/[(y/100)*2]<<
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2