코딩테스트/[C#] 프로그래머스

[프로그래머스 | C# | Lv.0] 문자열로 변환

냠냠쿠 2023. 8. 23. 20:03
728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181845

 

📝 나의 풀이

using System;

public class Solution {
    public string solution(int n) {
        string answer = n.ToString();
        return answer;
    }
}
728x90