Problem E: 使用while语句求阶乘
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:24
Solved:15
Description
所谓阶乘,对于给定的一个数n, 求出1x2x3x4x.......x n的结果,即为n的阶乘,记作 “n!”
例如
3!=1x2x3 =6
4!=1x2x3x4=24
5!=1x2x3x4x5=120
请你写出一个程序,当输入一个数字n,求出n!的结果
例如
3!=1x2x3 =6
4!=1x2x3x4=24
5!=1x2x3x4x5=120
请你写出一个程序,当输入一个数字n,求出n!的结果
Input
输入一个数字n
Output
求出n!的结果
Sample Input Copy
5
Sample Output Copy
120