글
프로그래머스 C# 치킨 쿠폰(JAVA)
프로그래밍
2023. 1. 19. 17:18
728x90
SMALL
using System;
public class Solution {
public int solution(int chicken) {
int answer = 0;
for(int i=0;i<6;i++)
{
answer += chicken/10;
chicken = chicken/10 + chicken%10;
}
return answer;
}
}
자바
class Solution {
public int solution(int chicken) {
int answer = 0;
while (chicken >= 10)
{
int service = chicken / 10;
int nmg = chicken % 10;
chicken = service + nmg;
answer += service;
}
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 저주의 숫자 3(JAVA) (0) | 2023.01.20 |
---|---|
프로그래머스 C# 유한소수와 무한소수(2,5, JAVA) (0) | 2023.01.19 |
프로그래머스 C# 문자열 밀기(IndexOf, stringShift, JAVA) (0) | 2023.01.19 |
프로그래머스 C# 삼각형의 완성조건(2)(Array.Max(), JAVA) (0) | 2023.01.19 |
프로그래머스 C# 직사각형의 넓이(Linq, Array.Max(), JAVA) (0) | 2023.01.19 |