/ 科创班 /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 5ms 640.0 KiB
#2 Accepted 4ms 624.0 KiB
#3 Accepted 4ms 512.0 KiB
#4 Accepted 4ms 512.0 KiB
#5 Accepted 3ms 512.0 KiB
#6 Accepted 5ms 512.0 KiB
#7 Accepted 3ms 640.0 KiB
#8 Accepted 4ms 604.0 KiB
#9 Accepted 4ms 632.0 KiB
#10 Accepted 4ms 624.0 KiB

代码

#include <iostream>
using namespace std;

int main(void)
{
	int num;
	int i, count = 1;
	cin >> num;
	if (num == 0 || num == 1)
	{
		count = 1;
	}
	else
	{
		for (i = num; i > 1; i--)
		{
			count *= i;
		}
	}
	cout << count;

	system("pause");
	return 0;
}

信息

递交者
类型
递交
题目
求阶乘
题目数据
下载
语言
C++
递交时间
2018-06-20 13:35:15
评测时间
2018-06-20 13:35:15
评测机
分数
100
总耗时
46ms
峰值内存
640.0 KiB