label이 break, continue와 사용가능해서 좋은 자바:)
좀 더 좋은 소수찾는 방법으로 풀어봐야지 한번 더 시도해봐야지
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| public class NumOfPrime {
int numberOfPrime(int n) {
int result = 0;
loop1:
for(int i=2;i<=n;i++) {
for(int j=2;j<i;j++) {
if(i%j==0) {
continue loop1;
}
}
result++;
}
// 함수를 완성하세요.
return result;
}
public static void main(String[] args) {
NumOfPrime prime = new NumOfPrime();
System.out.println(prime.numberOfPrime(10));
}
}
|