728x90 반응형 분류 전체보기273 프로그래머스 - 두 수의 나눗셈 class Solution { public int solution(int num1, int num2) { double result = (double)num1/num2 * 1000; return (int)result; } } 2023. 2. 21. 프로그래머스 - 숫자 비교하기 class Solution { public int solution(int num1, int num2) { int answer; if(num1==num2){ answer=1; } else{ answer=-1; } return answer; } } 2023. 2. 21. 프로그래머스 - 두 수의 합 class Solution { public int solution(int num1, int num2) { return num1+num2; } } 2023. 2. 21. 프로그래머스 - 나이 출력 class Solution { public int solution(int age) { return 2023-age; } } 2023. 2. 21. 이전 1 ··· 64 65 66 67 68 69 다음 728x90 반응형