728x90 알고리즘53 [프로그래머스] 짝수와 홀수 프로그래머스 1단계 짝수와 홀수 https://programmers.co.kr/learn/challenges 문제 설명 제한 조건 - num은 int 범위의 정수입니다. - 0은 짝수입니다. 풀이 class Solution { public String solution(int num) { String answer; if(num%2==0) answer = "Even"; else answer = "Odd"; return answer; } } 2022. 4. 23. [프로그래머스] x만큼 간격이 있는 n개의 숫자 프로그래머스 1단계 x만큼 간격이 있는 n개의 숫자 https://programmers.co.kr/learn/challenges 문제 설명 풀이 class Solution { public long[] solution(long x, int n) { long[] answer; answer = new long[n]; for(int i=0; i 2022. 4. 23. [프로그래머스] 평균 구하기 프로그래머스 1단계 평균 구하기 https://programmers.co.kr/learn/challenges 문제 설명 풀이 class Solution { public double solution(int[] arr) { double answer = 0; for(int i = 0; i 2022. 4. 23. [프로그래머스] 자릿수 더하기 프로그래머스 1단계 자릿수 더하기 https://programmers.co.kr/learn/challenges 문제 설명 풀이 public class Solution { public int solution(int n) { int answer = 0; while(n>0) { answer += n % 10; n /= 10; } return answer; } } 2022. 4. 23. 이전 1 ··· 8 9 10 11 12 13 14 다음 728x90