프로그래머스 C# 피자 나눠먹기 (1) (파이썬, 자바)
2023. 4. 18. 16:19ㆍC# 알고리즘 코딩(프로그래머스)
using System;
public class Solution
{
public int solution(int n)
{
return (int)Math.Ceiling((double)n / 7);
}
}
///
using System;
public class Solution
{
public int solution(int n)
{
int answer = n / 7 + (n % 7 == 0 ? 0 : 1);
/* int answer = n/7;
if(n%7 != 0 )
{
answer += 1; 나머지가 0이면 그대로가고, 0이 아니면 1을 더해준다.
}*/
return answer;
}
}
파이썬
///
def solution(n):
return (n - 1) // 7 + 1
자바
class Solution {
public int solution(int n) {
return (n + 6) / 7;
}
}
class Solution {
public int solution(int n) {
int answer = (n%7==0) ? n/7 : n/7 + 1;
return answer;
}
}
'C# 알고리즘 코딩(프로그래머스)' 카테고리의 다른 글
프로그래머스 C# a와 b 출력하기 (0) | 2023.05.23 |
---|---|
프로그래머스 C# 덧셈식 출력하기 (0) | 2023.05.21 |
프로그래머스 C# 과일장수(자바) (0) | 2023.04.17 |
프로그래머스 C# 피자 나누어 먹기(3) (파이썬, 자바) (0) | 2023.04.16 |
프로그래머스 C# 직각삼각형 출력하기(파이썬, 자바) (0) | 2023.04.15 |