Problem1422--航天员体重

1422: 航天员体重

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 758  Solved: 181
[Submit] [Status] [Web Board] [Creator:]

Description

月球上航天员的体重是地球上的16.5%,假如航天员在地球上的体重每年增长0.5千克,编写程序输出未来10年航天员在地球和月球上的体重状况。
注意:用户输入航天员体重值,如果输入为Q或q,则退出程序,并提示“程序退出!”,如果输入非数值则提示“输入有误,请重新输入:”。程序可循环运行直至退出。


Input

70
q

Output

Input weight(kg):
Weight on earth:70.50,71.00,71.50,72.00,72.50,73.00,73.50,74.00,74.50,
Weight on moon:11.63,11.71,11.80,11.88,11.96,12.04,12.13,12.21,12.29,
Input weight(kg):
Quit!

Sample Input

70
q

Sample Output

Input weight(kg):
Weight on earth:70.50,71.00,71.50,72.00,72.50,73.00,73.50,74.00,74.50,
Weight on moon:11.63,11.71,11.80,11.88,11.96,12.04,12.13,12.21,12.29,
Input weight(kg):
​Quit!

Source/Category


[Submit] [Status]