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

PROGRAMMING:Write the letter H

Luz5年前 (2021-05-10)题库411
The letter 'H' can be output in this way. Program output ` H`
```
* *
* *

* *
* *
```
###Input format:
nothing
###Output format:
Output letter 'H' graphics.
###Input example:
Here is a set of inputs. For example:
```in
```
###Output example:
The corresponding output is given here. For example:
```out
* *
* *

* *
* *
```







answer:If there is no answer, please comment
```
letter_ H="* *\n* *\n\n* *\n* *"
print(letter_ H)
```