摘要:
#include<stdio.h>int factorial (int n); int main(){ int n; scanf("%d",&n); printf("%d \n",factorial(n)); return 0;} int factorial(int n){ int i,fact=1 阅读全文
摘要:
时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue 时间限制 400 ms 时间限制 400 ms 内存限制 65536 kB 内存限制 65536 kB 代码长度限制 8000 B 代码长度限制 8000 B 判题程 阅读全文