Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
148701 黄子轩 计算n的阶乘 C++ 解答错误 66 0 MS 248 KB 154 2024-05-25 14:32:11

Tests(2/3):


#include<iostream> #include<cstdio> using namespace std; int main(){ int a,s,b; b=1; cin>>a; for(int i=1;i<=a;i++){ b*=i; } cout<<b; }


测评信息: