当前位置: 代码迷 >> 综合 >> ZZULIOJ 1057: 素数判定,Java
  详细解决方案

ZZULIOJ 1057: 素数判定,Java

热度:54   发布时间:2023-11-25 08:51:06.0

1057: 素数判定

import java.util.Scanner;
public class Main {
    public static void main(String[] args) {
    Scanner cin = new Scanner(System.in);int x=cin.nextInt();if(isPrime(x)) System.out.println("Yes");else System.out.println("No");}public static boolean isPrime(int x){
    if(x<=1) return false;for(int j=2;j<=Math.sqrt(x);j++) if(x%j==0) return false;return true;}
}
  相关解决方案