728x90 반응형 알고리즘 문제풀이146 프로그래머스 - 자릿수 더하기 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. 프로그래머스 - 약수의 합 class Solution { public int solution(int n) { int answer = 0; for(int i=1; i 2023. 3. 25. 이전 1 ··· 10 11 12 13 14 15 16 ··· 37 다음 728x90 반응형