https://school.programmers.co.kr/learn/courses/30/lessons/120815
정답
class Solution {
public int solution(int n) {
int answer = 0;
for(int i=1; i<=6*n; i++)
{
if(6*i%n ==0)
{
answer = i;
break;
}
}
return answer;
}
}
다른 사람의 풀이
class Solution {
public int solution(int n) {
int answer = 1;
while(true){
if(6*answer%n==0) break;
answer++;
}
return answer;
}
}
'Java > 프로그래머스' 카테고리의 다른 글
[JAVA] 프로그래머스 - 옷가게 할인 받기 (1) | 2024.04.19 |
---|---|
[JAVA] 프로그래머스 - 피자 나눠 먹기(3) (1) | 2024.04.19 |
[JAVA] 프로그래머스 - 중복된 숫자 개수 (0) | 2024.04.19 |
[JAVA] 프로그래머스 - 피자 나눠 먹기(1) (0) | 2024.04.18 |
[JAVA] 프로그래머스 - 짝수는 싫어요 (0) | 2024.04.18 |