2020-01-22 게시 됨2020-02-07 업데이트 됨Algorithm / Programmers몇 초안에 읽기 (약 74 단어)[프로그래머스] 자릿 수 더하기컴퓨터과학 수업에서 새로운 언어를 배울 때 지겹도록 짜본 코드…하지만 간과하지 말자. 이런 간단한 것도 생각이 안날 수 있으니까. 123456789101112import java.util.*;public class Solution { public int solution(int n) { int answer = 0; while (n!=0) { answer += n % 10; n /= 10; } return answer; }} [프로그래머스] 자릿 수 더하기https://msj0319.github.io/2020/01/22/프로그래머스-자릿-수-더하기/AuthorMoonDoniPosted on2020-01-22Updated on2020-02-07Licensed under#알고리즘Algorithm프로그래머스