2012年8月19日

NYOJ 105 九的余数

摘要: 地址:http://acm.nyist.net/JudgeOnline/problem.php?pid=105思路:大数求余,同NYOJ 205 求余数 1 #include<stdio.h> 2 #include<string.h> 3 char num[1000100]; 4 int main() 5 { 6 long int i; 7 int n,temp,t; 8 scanf("%d",&n); 9 while(n--)10 {11 scanf("%s",num);12 t=strlen(num);13 ... 阅读全文

posted @ 2012-08-19 09:31 mycapple 阅读(226) 评论(0) 推荐(0) 编辑

导航