글
프로그래머스 C# 자연수 뒤집어 배열로 만들기(for, long)
프로그래밍
2023. 1. 22. 23:40
728x90
SMALL
using System.Collections.Generic;
public class Solution {
public int[] solution(long n) {
string a = n.ToString();
int[] answer = new int[a.Length];
for(int i=0;i<a.Length;i++)
{
answer[i] = (int)(n%10);
n /= 10;
}
return answer;
}
}
/// String으로 만들어놓고 해야되는 줄은 몰랐다.
using System;
public class Solution {
public long[] solution(long n) {
int size = n.ToString().Length;
long[] answer = new long[size];
for(int i = 0; i < size; i++)
{
answer[i] = n % 10;
n /= 10;
}
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 정수 내림차순으로 배치하기(ToCharArray, Sort, Reverse, long.Parse) (0) | 2023.01.23 |
---|---|
프로그래머스 C# 정수 제곱근 판별(for i*i, sqrt) (0) | 2023.01.23 |
프로그래머스 C# 자릿수 더하기(while문, P, J) (0) | 2023.01.22 |
프로그래머스 C# 약수의 합(int형으로 가능) (0) | 2023.01.22 |
프로그래머스 C# 소수 찾기(제곱근, 루트, 2~n, 2~root(n)) (0) | 2023.01.22 |