回复 9楼 ClearningC
谢谢,,,我是刚学c入门,,暂时理解你的这个程序还有点困难。。。
回复 11楼 花脸
慢慢来吧,我也是才学了几个月而已。
#include<stdio.h> #include<math.h> int main() { int i=0; int j=0; for (i=11;i<21;i+=2) { for (j=2;j<=(int)sqrt(i);j++) if (i%j==0) break; if (j==(int)sqrt(i)+1) printf("%d\n",i); } return 0; }
[此贴子已经被作者于2017-1-4 23:23编辑过]