標題:
if...else 判斷式 (二)_你能考駕照嗎?
[打印本頁]
作者:
tonyh
時間:
2013-3-16 13:58
標題:
if...else 判斷式 (二)_你能考駕照嗎?
試做一個判斷是否能騎摩托車的小程式 (輸入年齡, 判斷是否滿18歲)
作者:
蘇昱安
時間:
2013-3-16 14:07
本帖最後由 蘇昱安 於 2013-3-16 14:18 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"你幾歲: ";
cin>>score;
if(score>=18)
{
cout<<"恭喜你!可以摩托車!"<<endl;
}else
{
cout<<"去找法官"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃柏維
時間:
2013-3-16 14:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡: ";
cin>>age;
if(age>=18)
{
cout<<"恭喜你可以騎"<<endl;
}
else
{
cout<<"你不符合年齡標準"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭凡瑛
時間:
2013-3-16 14:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的年齡:";
cin>>score;
if(score>=18)
{
cout<<"恭喜妳!你可以騎摩拖車ㄌ!"<<endl;
}else
{
cout<<"嘿!你還小!不行騎摩拖車喔!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-3-16 14:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"你幾歲?";
cin>>age;
if(age>=18)
{
cout<<"騎機車!";
}
else
{
cout<<"送警局!";
}
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-3-16 14:20
#include<iostream>
#include<cstdilb>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的年齡"<<endl;
cin>>score;
if(score>=18)
{
cout<<"祝你被撞死"<<endl;
}
else
{
cout<<"哦!犯法喔"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林鎧言
時間:
2013-3-16 14:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請問你幾歲:";
cin>>x;
if(x>=18)
{
cout<<"你可以騎車了"<<endl;
}
else
{
cout<<"你不可以騎車喔"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-3-16 14:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入妳的年齡:";
cin>>age;
if(age>=18)
{
cout<<"你可以騎摩托車了!" ;
}else
{
cout<<"你還不能騎摩托車";
}
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-3-16 14:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡:";
cin>>age;
if(age>=18)
{
cout<<"恭喜妳!摩托車先生!自殺吧!";
}else
{
cout<<"你是白痴嗎!摩托車先生!哈哈哈!";
}
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-3-16 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年紀: ";
cin>>age;
if (age>=18)
{
cout<<"您可以騎機車"<<endl;
}else
{
cout<<"還未成年喔!"<<endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
林長逸
時間:
2013-3-16 14:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int age;
cout<<"請輸入你的年齡";
cin>>age;
if(age>=18)
{
cout<<"恭喜你可以騎車了"<<endl;
}else
{
cout<<"你不可以騎車"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2