摘要:
#include <stdio.h>#include <stdlib.h>#include <assert.h>struct elt {struct elt *next;int value;};/** We could make a struct for this,* but it would ha 阅读全文
摘要:
#include<stdio.h>#include<math.h>#include<time.h>int main(){ const int MOD =1000000; int i,j,n,s=0; scanf("%d",&n); for(i=1;i<=n;i++) { int factorial= 阅读全文