-->
当前位置:首页 > 题库

PROGRAMMING:Robot crossing bridge (error correction version)

Luz5年前 (2021-05-10)题库481
It is known that each step of the robot can advance $$x $$meters, while the bridge is $$a $$meters long. The robot has to walk $$s $$steps to cross the bridge. Please write a program, input $$x $$and $$M $$, calculate and output $$s $.
####Input format
>$$x $$and $$a$$
####Output format
> $$s$$
####Sample input 1
```in
0.77 235.33
```
####Sample output 1
```out
three hundred and six
```
####Sample input 2
```in
0.72 39.60
```
####Sample output 2
```out
fifty-five
```
---
Requirement: consider the error of real number.







answer:If there is no answer, please comment