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

PROGRAMMING:n rows triangle (1)

Luz5年前 (2021-05-10)题库574
develop a `n` rows trianglar pattern similar to the followings (if inputing 4 for `n`).
```
*
**
***
****
```
###Input format:
Input a integer for `n`.
###Output format:
output the response pattern. No extra blank in the pattern.
###Input example:
```in
five
```
###Output example:
```out
*
**
***
****

```







answer:If there is no answer, please comment