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

PROGRAMMING:Output asterisk triangle

Luz5年前 (2021-05-10)题库432
Enter an integer n from the keyboard, and then output an asterisk "*" composed of N lines of triangle.
###Input format:
For example, enter 5
###Output format:
*
***

**
****
###Input example:
```in
five
```
###Output example:
```out
*
***

**
****
```







answer:If there is no answer, please comment