1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
public class Count {
public static void main(String[] args) {
for(int i = 1; i <= 50; i++) {
int count = 0;
for(int j = 1; j <= i; j++) {
if(i%j == 0) {
count++;
}
}
if(count == 2) {
System.out.println(i);
}
}
} //main
} //class
|
cs |
※ 제곱근이란? 어떤 수의 제곱근은 제곱하여 그 수가 되는 수를 가리킨다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
public class SquareRoot {
public static void main(String[] args) {
for(int i = 2; i <= 50; i++) {
boolean isPrimeNumber = true;
for(int j = 2; j <= Math.sqrt(i); j++) {
if(i%j == 0) {
isPrimeNumber = false;
break;
}
}
if(isPrimeNumber) {
System.out.println(i);
}
}
} //main
} //class
|
cs |
[JAVA] 자바 예제 - 12지신 최단 거리 구하기(Pathfinding) (0) | 2021.06.09 |
---|---|
[JAVA] 자바 예제 - 배열의 요소 합 구하기(enhanced for문 사용) (0) | 2021.06.09 |
[JAVA] 자바 예제 - 랜덤 숫자 생성하기 (Math.random( )함수 이용) (0) | 2021.06.08 |
[JAVA] 자바 예제 - 자판기 거스름돈 산출하기 (0) | 2021.06.07 |
[JAVA] 자바 예제 - 은행 계좌 프로그램 작성하기 (0) | 2021.06.02 |