智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=10737428be8e0c037c28caaeb8038b69

本题要求编写程序,计算N的阶乘。
输入格式:
输入在一行中给出一个正整数 N。
输出格式:
在一行中按照“product = F”的格式输出阶乘的值F,请注意等号的左右各有一个空格。题目保证计算结果不超过双精度范围。
输入样例:

5

输出样例:

product = 120

x = int(input())
a = 1
for i in range(1, x+1):
    a = a*i
print("product = %d" % float(a))
————————————————
 

智一面的面试题提供python的测试题
使用地址:
http://www.gtalent.cn/exam/interview?token=10737428be8e0c037c28caaeb8038b69