標題:
007 if else 機車使用年齡判斷
[打印本頁]
作者:
游東祥
時間:
2014-3-8 14:13
標題:
007 if else 機車使用年齡判斷
試做一個判斷是否能騎摩托車的小程式 (輸入年齡, 判斷是否滿18歲)
作者:
林宇翔
時間:
2014-3-8 14:15
本帖最後由 林宇翔 於 2014-3-8 14:18 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout << "請輸入你的年齡:" ;
cin >> x;
if( x >= 18 )
{
cout << "可以騎摩托車" << endl;
}
else if( x < 18 && x > 0)
{
cout << "不准騎摩托車,小屁孩" << endl;
}
else if(x <= 0)
{
cout << "說謊打屁屁" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李允軒
時間:
2014-3-8 14:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout << "請輸入您的年齡:";
cin >> x;
if (x>=18 && x<=100)
{
cout << "可以騎摩托車";
}
else if (x<=17 && x>=1)
{
cout << "不能騎摩托車";
}
else
{
cout << "你找死喔!";
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2