題目連結: https://zerojudge.tw/ShowProblem?problemid=d460
# 解題思路
字面上的意思,就是判斷囉 (記得用 if...else)
# 程式碼
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
int age; | |
while(cin>>age) | |
{ | |
if(age>=60) | |
cout<<399; | |
else if(age>=18) | |
cout<<890; | |
else if(age>=12) | |
cout<<790; | |
else if(age>=6) | |
cout<<590; | |
else | |
cout<<0; | |
cout<<endl; | |
} | |
} |