摘要: 判断1~200之间素数,并输出所有素数。 public class Test { public static void main(String[] args) { for (int i = 1; i < 200; i++) { int num = 0; for (int j = 1; j <= i/ 阅读全文