参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int cnt = 0; int i = 0; for( i = 2; cnt != n; i++) if(judge(i)) cnt++; System.out.println(i - 1); } public static boolean judge(int a) { for(int i = 2; i * i <= a; i++) if(a % i == 0) return false; return true; } }
0.0分
6 人评分
C语言程序设计教程(第三版)课后习题7.2 (Java代码)浏览:694 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:940 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:1072 |
校门外的树 (C语言代码)浏览:988 |
A+B for Input-Output Practice (III) (C语言代码)浏览:592 |
WU-整数平均值 (C++代码)浏览:1307 |
【计算球体积】 (C语言代码)浏览:1158 |
数组与指针的问题浏览:760 |
矩阵的对角线之和 (C语言代码)浏览:1401 |
幸运数 (C++代码)浏览:2982 |