摘要: http://acm.nyist.net/JudgeOnline/problem.php?pid=28 大数水题~~ 1 #include<stdio.h> 2 int a[20000]; 3 void ch(int *a, int n) 4 { 5 int i, k; 6 for(i = 19999; i >= 0; i--) 7 { 8 if(a[i]) 9 break;10 }11 k = i;12 for(i = 0; i <= k; i++)13 {14 a[i] = a[... 阅读全文
posted @ 2011-12-11 21:49 枫萧萧 阅读(459) 评论(0) 推荐(1) 编辑