-
Level 1 > 자릿수 더하기프로그래머스(Programmers) 2018. 8. 20. 09:22반응형
https://programmers.co.kr/learn/courses/30/lessons/12931
1. 문제
2. 알고리즘
키워드 - 구현
3. 코드
1234567891011121314#include <iostream>using namespace std;int solution(int n){int answer = 0;while(n) {int cand = n % 10;answer += cand;n = n / 10;}return answer;}cs 반응형'프로그래머스(Programmers)' 카테고리의 다른 글
DrawRect (0) 2018.08.20 가장 큰 정사각형 찾기 (0) 2018.08.20 나머지 한 점 (0) 2018.08.20 순열 검사 (0) 2018.08.20 Level 2 > 땅따먹기 (0) 2018.08.20