[필요개념]
> isprime 함수의 원리와 사용법
아래는 잘한 사람 코드임
class NumOfPrime {
int numberOfPrime(int n) {
int count = 0;
int result = 0;
for(int i = 1 ; i <= n ; i++){
for(int j = 1 ; j <= i ; j++){
if ( i % j == 0) count++;
}
if(count == 2) result++;
count = 0;
}
return result;
}
public static void main(String[] args) {
NumOfPrime prime = new NumOfPrime();
System.out.println( prime.numberOfPrime(10) );
}
}
class Solution {
public int solution(int n) {
int answer = 0;
// 2부터 n까지의 숫자들을 모두 소수검증에 들어갈것임
// 이를 위해 isprime함수사용할 예정
for (int i = 2; i <= n; i++) {
// 만약 소수가 맞다면 ++진행
if(isprime(i)){
answer++;
}
}
return answer;
}
// 해당수가 소수인지를 판별하는 메소드
// sqrt를 사용하여, 시간초과가 되지않도록 처리하였음
// 나누었을 때 0으로 떨어지면 소수가 아님
public boolean isprime(int n) {
for (int i = 2; i <= (int)Math.sqrt(n); i++) {
if (n % i == 0) {
return false;
}
}
return true;
}
}
public class Hello {
public static void main(String[] args) {
Solution test = new Solution();
int o = 10;
System.out.println(test.solution(o));
}
}
'프로그래머 ,백준, 유튜브, 문제' 카테고리의 다른 글
체육복 (0) | 2022.09.27 |
---|---|
소수 중 최대값 / 일반수 중 최소값 (0) | 2022.09.27 |
K번째 수_프로그래머스 (0) | 2022.09.27 |
최대공약수와 최소공배수_프로그래머스 (0) | 2022.09.27 |
신규아이디 추천_프로그래머스 (0) | 2022.09.27 |
댓글