Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
148727 黄子轩 计算n的阶乘 C++ 通过 100 0 MS 240 KB 190 2024-05-25 14:35:12

Tests(3/3):


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


测评信息: