0 of 1 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 1 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#include <iostream> using namespace std; int Factorial(int n){ int s=1; for (int i = 1; i <= n; i++) { s=s*i; } return s; } int main() { int a; cin>>a; cout<<Factorial(a); return 0; } |
阅读上面程序,如何输入值是5,请问输出结果是多少