import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int T=sc.nextInt(); for (int i =1; i <= T; i++) { int n=sc.nextInt(); int cnt=0; boolean isP=true; lo:for (int j = 2; j*j <=n; j++) { while(n%j==0) { n/=j; cnt++; if(cnt>2){ System.out.println("No"); isP=false; break lo;} } } if(isP){ if(n>1){ cnt++; if(cnt!=2){ System.out.println("No"); } else{ System.out.println("Yes"); } } else{ System.out.println("Yes"); } } } } static boolean isPri(int n){ if(n<2)return false; for (int i = 2; i*i <=n; i++) { if(n%i==0)return false; } return true; } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.1 (C语言代码)浏览:761 |
不会做的浏览:954 |
C语言程序设计教程(第三版)课后习题6.11 (C语言代码)浏览:2097 |
最小公倍数 (C语言代码)浏览:1104 |
C语言训练-数字母 (C语言代码)浏览:648 |
1024题解浏览:879 |
DNA (C语言代码)浏览:837 |
淘淘的名单 (C语言代码)浏览:1309 |
整除问题 (C语言代码)浏览:594 |
班级人数 (C语言代码)浏览:980 |