문제 설명
해결방안
using System;
public class Solution {
public int solution(int n) {
int answer=0;
while(n > 0)
{
answer *= 3;
answer += n % 3;
n/=3;
}
return answer;
}
}
'알고리즘' 카테고리의 다른 글
프로그래머스 C# 삼총사 (0) | 2024.06.27 |
---|---|
프로그래머스 C# 이상한 문자 만들기 (0) | 2024.06.25 |
프로그래머스 C# 최대공약수와 최소공배수 (0) | 2024.06.25 |
프로그래머스 C# 직사각형 별찍기 (0) | 2024.06.24 |
프로그래머스 C# 행렬의 덧셈 (0) | 2024.06.24 |