PROGRAMMING:4.15 - display height and weight control table
Write a program to show the comparison table of height and standard weight as follows. The height range and interval displayed are controlled by the integer value entered, and the standard weight is accurate to 2 decimal places.
-----From exercise 4-15
```
Starting value (CM): 155
End value (CM): 190
Interval value (CM): 5
155cm 49.97kg
160cm 53.25kg
... (omitted below)
```
Note: standard weight = BMI × Height (m) × Height (m), of which BMI = 20.8
Note: there are 4 spaces between the height and weight data in the first line; The decimal point should be aligned between up and down.
###Input example:
Here is a set of inputs. For example:
```in
one hundred and fifty-five
one hundred and sixty
five
```
###Output example:
The corresponding output is given here. For example:
```out
Start value (CM): end value (CM): interval value (CM): 155cm 49.97kg
160cm 53.25kg
```
answer:If there is no answer, please comment
-----From exercise 4-15
```
Starting value (CM): 155
End value (CM): 190
Interval value (CM): 5
155cm 49.97kg
160cm 53.25kg
... (omitted below)
```
Note: standard weight = BMI × Height (m) × Height (m), of which BMI = 20.8
Note: there are 4 spaces between the height and weight data in the first line; The decimal point should be aligned between up and down.
###Input example:
Here is a set of inputs. For example:
```in
one hundred and fifty-five
one hundred and sixty
five
```
###Output example:
The corresponding output is given here. For example:
```out
Start value (CM): end value (CM): interval value (CM): 155cm 49.97kg
160cm 53.25kg
```
answer:If there is no answer, please comment