赞
踩
- public class 素数 {
- public static void main(String[] args) {
- int i = 2;
- while (i < 100) {
- int j = 2;
- while (j <= (i / j)) {
- if (i % j == 0) {
- break;
- }
- j = j + 1;
- }
- if (j > i / j) {
- System.out.println(i + " 是素数");
- }
- i = i + 1;
- }
- }
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。