Java代码实现求第n个素数
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
int count = 0;
int num = 2;
while (count < n) {
if (isPrime(num)) {
count++;
}
num++;
}
System.out.println(num - 1);
}
private static boolean isPrime(int n) {
if (n <= 1) {
return false;
}
for (int i = 2; i <= Math.sqrt(n); i++) {
if (n % i == 0) {
return false;
}
}
return true;
}
}
原文地址: https://www.cveoy.top/t/topic/jqbu 著作权归作者所有。请勿转载和采集!