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

PROGRAMMING:Factorial

Luz5年前 (2021-05-10)题库416
#####Title Description
Can you work out the factorial of a positive integer?
#####Input Description:
Several lines, each line an integer n (1 < = n < = 20).
#####Output Description:
Output the factorial of each integer in order, one result on one line.
#####Input sample 1
```in
two
six
```
######Output sample 1
```out
two
seven hundred and twenty
```
#####Input sample 2
```in
five
one
three
```
#####Output sample 2
```out
one hundred and twenty
one
six
```






answer:If there is no answer, please comment