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

PROGRAMMING:4.18 - display integer values with * signs, 5 for each line

Luz5年前 (2021-05-10)题库412
Write a program, input an integer value, display the "*" of the integer value. Wrap every 5 lines displayed.
-----From exercise 4-18
```
How many *: 12


**
```
Note: if the input is not a positive integer, nothing will be output.
###Input example:
```in
twelve
```
###Output example:
```out
How many *:

**
```







answer:If there is no answer, please comment