Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
88153 | 黎贤超 | 13求n的阶乘 | C++ | Wrong Answer | 1 MS | 280 KB | 144 | 2024-08-18 09:36:49 |
#include<iostream> using namespace std; int main(){ int i,b,h=1; cin>>b; for(i=1;i<=b;i++){ h*=b; } cout<<h; return 0; }
------Input------
11
------Answer-----
39916800
------Your output-----
1843829075