분류 전체보기 (644) 썸네일형 리스트형 [프로그래머스/자바] 짝수의 합 class Solution { public int solution(int n) { int answer = 0; for(int i=2; i e % 2 == 0) .sum(); } } 다른 분의 풀이. 참고하고 싶어서 가져왔다. [프로그래머스/자바] 각도기 class Solution { public int solution(int angle) { if(0 [프로그래머스/자바] 두 수의 나눗셈 class Solution { public int solution(int num1, int num2) { return num1*1000/num2; } } [프로그래머스/자바] 나이 출력 class Solution { public int solution(int age) { return 2023-age; } } class Solution { public int solution(int age) { int year = 2022; return year-age+1; } } [프로그래머스/자바] 두 수의 합 class Solution { public int solution(int num1, int num2) { return num1+num2; } } [프로그래머스/자바] 두 수의 곱 class Solution { public int solution(int num1, int num2) { return num1 * num2; } } [프로그래머스/자바] 몫 구하기 class Solution { public int solution(int num1, int num2) { return num1/num2; } } [프로그래머스/자바] 숫자 비교하기 class Solution { public int solution(int num1, int num2) { return (num1-num2 == 0)? 1 : -1; } } class Solution { public int solution(int num1, int num2) { return (num1==num2)? 1 : -1; } } 이전 1 ··· 74 75 76 77 78 79 80 81 다음