반응형
public class HelloCommentMain {
public static void main(String[] args) {
HelloComment hc = new HelloComment();
System.out.printf("2343251은 솟수일까? %b%n", hc.isPri(2343251));
}
}
class HelloComment {
public boolean isPri(int a) {
boolean isP = true;
int b = (int) Math.sqrt(a);
for (int i = 2; i <= b; i++) {
if (a % i == 0) {
isP = false;
break;
} else{
isP = true;
}
}
return isP;
}
}
반응형
'DEMO CODE > JAVA 기초' 카테고리의 다른 글
[JAVA] Ex006 다중for문, if 예제 (0) | 2015.05.19 |
---|---|
[JAVA] Ex005 Math method (0) | 2015.05.19 |
[JAVA] Ex004 어제, 내일 날짜 구하기 소스 (0) | 2014.01.09 |
[JAVA] Ex002 윤년출력 및 판단 소스 (0) | 2014.01.09 |
[JAVA] Ex001 윤년판단 소스 (0) | 2014.01.09 |