摘要: #include<stdio.h> #include<stdlib.h> int main(){ int i, j; for (i = 100; i <= 200; i++) { for (j = 2; j <= i - 1; j++) { if (i%j == 0) break; } if (j 阅读全文
posted @ 2018-10-30 12:07 MarcTerstgen 阅读(76) 评论(0) 推荐(0)