글
프로그래머스 C# 나이 출력(개쉬움, P, J)
프로그래밍
2022. 12. 19. 22:05
728x90
SMALL
using System;
public class Solution {
public int solution(int age) {
if (age > 120 || age <= 0)
{
throw new Exception("invalid param");
}
return 2023-age;
}
}
/////
파이썬
////
def solution(age):
return 2023-age
자바
class Solution {
public int solution(int age) {
return 2022-age+1;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 각도기(if, else if, else문, 삼항 연산자, P, J) (0) | 2022.12.19 |
---|---|
프로그래머스 C# 숫자 비교하기(개쉬움, P, J) (0) | 2022.12.19 |
프로그래머스 C# 두 수의 차, 두 수의 곱, 나머지 구하기(개쉬움) (0) | 2022.12.19 |
일본의 프로그래밍 경기 AtCoder (0) | 2021.03.21 |
비주얼 스튜디오 단축키 정리 (0) | 2021.03.01 |