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

PROGRAMMING:Output inverted triangle

Luz5年前 (2021-05-10)题库434
Enter any character and print the inverted triangle (4 lines) formed by the character.
###Input format:
Enter a character, such as:*
###Output format:
* * * *
* * *
* *
*
###Input example:
```in
*
```
###Output example:
```out
* * * *
* * *
* *
*
```







answer:If there is no answer, please comment