问题1378--Faulty Odometer

1378: Faulty Odometer

时间限制: 1 Sec  内存限制: 128 MB
提交: 21  解决: 2
[状态] [讨论版] [提交] [命题人:]
题目描述

You are given a car odometer which displays the miles traveled as an integer. The odometer has a defect,however: it proceeds from the digit 3 to the digit 5,always skipping over the digit 4. This defect shows up in all positions (the oen’s,the ten’s ,thehundred’s,etc. ).For example,if the odometer displays 15339 and the car travels one mile,odometer reading changes to 15350(instead of 15340)

输入

Each line of input contains a positive integer in the range 1..999999 which represents an odometer reading .(Leading zeros will not appear in the input.)The end of input is indicated by a line containing a single 0.You may assume that no odometer reading will contain the digit 4.

输出

Each line of input will produce exactly one line of ooutput, which will contain: the odometer reading from the input, a colo, one blank space,and the actual number of miles traveled by the car.

样例输入 Copy
15
250
0
样例输出 Copy
15: 13
250: 198
来源/分类