qfedu-basic-level/day7/homework/oh2.cpp

22 lines
315 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 输入一个整数,输出它的阶乘。
// 例如输入5输出120
#include <iostream>
using namespace std;
int main()
{
int n;
int sum = 1;
cout << "请输入一个整数:";
cin >> n;
while (n)
{
sum *= n;
--n;
}
cout << sum << endl;
return 0;
}