Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- HTTP
- Operating System.
- 스프링 핵심 원리
- n타일링2
- FIFO paging
- 토마토
- 우아한 테크 세미나
- OS
- 우아한레디스
- redis
- C#
- 열혈 tcp/ip 프로그래밍
- Spring
- 에러핸들링
- 제프리리처
- inflearn
- 이펙티브코틀린
- TCP/IP
- 운영체제
- Four Squares
- 열혈 TCP/IP 소켓 프로그래밍
- 윤성우 저자
- Window-Via-c/c++
- C++
- BOJ
- Operating System
- 김영한
- 10026번
- 2475번
- 스프링 입문
Archives
- Today
- Total
목록분해합 (1)
나의 브을로오그으
[c++] 2231번 : 분해합
https://www.acmicpc.net/problem/2231 2231번: 분해합 어떤 자연수 N이 있을 때, 그 자연수 N의 분해합은 N과 N을 이루는 각 자리수의 합을 의미한다. 어떤 자연수 M의 분해합이 N인 경우, M을 N의 생성자라 한다. 예를 들어, 245의 분해합은 256(=245+2+4+5)이 www.acmicpc.net #include #include using namespace std; int GetDicompose(int n) { int decompose = n; while (n > 0) { decompose += n % 10; n /= 10; } return decompose; } int main() { ios::sync_with_stdio(false); cin.tie(NULL)..
알고리즘/BaekJoon
2022. 4. 15. 13:26