글
프로그래머스 C# 아이스 아메리카노(몫과 나머지, P, J)
프로그래밍
2022. 12. 26. 16:28
728x90
SMALL
using System;
public class Solution {
public int[] solution(int money) {
int[] answer = new int[2];
answer[0] = money / 5500;
answer[1] = money % 5500; //남는 돈= 나머지
return answer;
}
}
파이썬
////
def solution(money):
answer = [money // 5500, money % 5500]
return answer
자바
class Solution {
public int[] solution(int money) {
return new int[] { money / 5500, money % 5500 };
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 특정 문자 제거하기(replace, P, J) (0) | 2022.12.28 |
---|---|
프로그래머스 C# 삼각형의 완성조건(1) (int[] -> Array.Sort(), P, J) (0) | 2022.12.26 |
프로그래머스 C# 문자열 뒤집기(string -> ToCharArray(), Reverse, P, J) (0) | 2022.12.26 |
프로그래머스 C# 짝수와 홀수의 개수(개쉬움, P, J) (0) | 2022.12.26 |
프로그래머스 C# 사분면 나누기 점의 위치 구하기(삼항연산자, 3항연산자) (0) | 2022.12.26 |