Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- map
- 자료구조
- directx
- 운영체제
- queue
- c++
- 아두이노 컴파일러
- Visual Micro
- priority_queue
- 컴퓨터 그래픽스
- list
- 수광 소자
- C언어
- vector
- stl
- Deque
- 아두이노 소스
- arduino compiler
- html
- Stack
- Array
- 시스템프로그래밍
- 통계학
- LineTracer
- 라인트레이서
- Arduino
- 아두이노
- WinAPI
- set
- Algorithm
Archives
- Today
- Total
Kim's Programming
2043. 서랍의 비밀번호 본문
2043. 서랍의 비밀번호
풀이 방법
<코드>
#include <iostream> int main() { int inputK{0},inputP{0}; std::cin>>inputK>>inputP; std::cout<<inputK - inputP +1<<std::endl; return 0; }
'SW ExpertAcademy > D1' 카테고리의 다른 글
2047. 신문 헤드라인 (0) | 2018.11.30 |
---|---|
2046. 스탬프 찍기 (0) | 2018.11.30 |
2029. 몫과 나머지 출력하기 (0) | 2018.11.30 |
2027. 대각선 출력하기 (0) | 2018.11.30 |
2025. N줄덧셈 (0) | 2018.11.30 |