글
프로그래머스 C# 숫자 비교하기(개쉬움, P, J)
프로그래밍
2022. 12. 19. 22:13
728x90
SMALL
using System;
public class Solution {
public int solution(int num1, int num2) {
if (num1 < 0 || num1 > 10000 || num2 < 0 || num2 > 10000) {
throw new Exception("invalid param");
}
if(num1 == num2)
{
return 1;
}
else return -1;
}
}
////
파이썬
def solution(num1, num2):
return 1 if num1==num2 else -1
자바
////////////
class Solution {
public int solution(int num1, int num2) {
int answer = (num1 == num2) ? 1 : -1;
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 짝수의 합(for문 줄이기, P, J) (0) | 2022.12.20 |
---|---|
프로그래머스 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 |