728x90 반응형 분류 전체보기273 프로그래머스 - x만큼 간격이 있는 n개의 숫자 class Solution { public long[] solution(int x, int n) { long[] answer = new long[n]; for(int i=1; i 2023. 3. 25. 프로그래머스 - 자릿수 더하기 import java.util.*; public class Solution { public int solution(int n) { int answer = 0; String[] num = String.valueOf(n).split(""); for(String a : num){ answer+=Integer.parseInt(a); } return answer; } } 2023. 3. 25. 프로그래머스 - 평균 구하기 class Solution { public double solution(int[] arr) { double answer = 0; int sum =0; for(int a : arr){ sum += a; } answer = (double)sum/arr.length; return answer; } } 2023. 3. 25. 프로그래머스 - 짝수와 홀수 class Solution { public String solution(int num) { if(num%2==0){ return "Even"; } return "Odd"; } } 2023. 3. 25. 이전 1 ··· 19 20 21 22 23 24 25 ··· 69 다음 728x90 반응형