http://poj.org/problem?id=1326
一个模拟的水题
题意就是要你算飞行的英里数。
F代表头等舱,为实际飞行的英里数的2倍。
B为商务舱,为实际飞行的英里数的1.5倍。
Y为经济舱,大于500的为实际的,不够的为500英里。
#include <stdio.h>
#include <iostream>
#include <string> using namespace std; string str1,str2;
int mile,sum;
char n; int main()
{
int x=;
while(cin>>str1&&str1!="#"){
sum=;
while(str1!=""){
cin>>str2>>mile>>n;
if(n=='F'){
sum+=mile*;
}
if(n=='B'){
sum+=mile*1.5+0.5; //四舍五入。
}
if(n=='Y'){
if(mile>=) sum+=mile;
else sum+=;
}
cin>>str1;
}
printf("%d\n",sum);
}
return ;
}