摘要: #include<stdio.h>#include<string.h>int n1, n2; bool prim[10000]; int value[10000]; int q[11000]; int c[4]= {1, 10, 100, 1000};void prime(){ int i,j; prim[0]=prim[1]=false; for(i=2;i<500... 阅读全文