일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- API Gateway
- react-xml-parser
- react-admin
- dynamodb
- react-sortable-hoc
- react-hook-form
- axios
- cognito
- zerocho
- signIn
- electron-builder
- domtoimage
- icrawler
- AWS
- readableStream
- JavaScript
- node
- 가상 DOM
- timeinput
- Route53
- react
- TypeScript
- electron
- yml
- 프로그래머스
- jimp
- gitignore
- xlsx
- window.postMessage
- react DOM
Archives
- Today
- Total
목록프로그래머스 (2)
꾸준히 공부하는 개발자
[프로그래머스] 자릿 수 더하기
#include using namespace std; int solution(int n) { int answer = 0; while(n > 0){ answer = answer + n%10; n= n/10; } return answer; }
프로그래머스
2020. 2. 7. 14:02