일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- AWS
- react-sortable-hoc
- window.postMessage
- yml
- axios
- gitignore
- react-hook-form
- signIn
- 프로그래머스
- react
- TypeScript
- cognito
- Route53
- xlsx
- API Gateway
- readableStream
- react-admin
- node
- icrawler
- 가상 DOM
- react DOM
- timeinput
- zerocho
- electron-builder
- domtoimage
- jimp
- electron
- JavaScript
- dynamodb
- react-xml-parser
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