Questions tagged «c»

这个挑战与C语言有关。请注意,通常不建议要求答案使用特定语言的挑战。


6
所有素数从0到1000
是否可以使C代码更小?它打印出从0到1000的所有素数。 C,89个字符 int i,p,c;for(i=2;i<1e3;i++){c=0;for(p=2;p<i;p++)if(i%p==0)c++;if(c==0)printf("%u\n",i);}
9 code-golf  number  tips  primes  c 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.