일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- AWS
- readableStream
- gitignore
- axios
- icrawler
- signIn
- jimp
- react-hook-form
- electron-builder
- yml
- API Gateway
- node
- cognito
- react-sortable-hoc
- react-xml-parser
- electron
- JavaScript
- zerocho
- react
- window.postMessage
- timeinput
- dynamodb
- react-admin
- 가상 DOM
- react DOM
- domtoimage
- 프로그래머스
- Route53
- xlsx
- TypeScript
Archives
- Today
- Total
꾸준히 공부하는 개발자
[프로그래머스] 자릿 수 더하기 본문
#include <iostream>
using namespace std;
int solution(int n)
{
int answer = 0;
while(n > 0){
answer = answer + n%10;
n= n/10;
}
return answer;
}
'프로그래머스' 카테고리의 다른 글
[프로그래머스] 완주하지 못한 선수 (0) | 2020.01.27 |
---|
Comments