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 |
Tags
- 아두이노
- Stack
- 아두이노 컴파일러
- 라인트레이서
- Algorithm
- C언어
- 자료구조
- html
- 시스템프로그래밍
- 수광 소자
- Arduino
- LineTracer
- directx
- 컴퓨터 그래픽스
- WinAPI
- 통계학
- arduino compiler
- 아두이노 소스
- Array
- map
- list
- vector
- Visual Micro
- queue
- stl
- 운영체제
- priority_queue
- c++
- Deque
- set
Archives
- Today
- Total
Kim's Programming
2019. 더블더블 본문
2019. 더블더블
풀이 방법
<코드>
#include <iostream> int main() { int first{1}; int input{0}; std::cin>>input; for(int i=0;i<input+1;i++) { std::cout<<first<<" "; first *=2; } return 0; }
'SW ExpertAcademy > D1' 카테고리의 다른 글
2025. N줄덧셈 (0) | 2018.11.30 |
---|---|
1938. 아주 간단한 계산기 (0) | 2018.11.30 |
1933. 간단한 N 의 약수 (0) | 2018.11.30 |
1936. 1대1 가위바위보 (0) | 2018.11.30 |
1545. 거꾸로 출력해 보아요 (0) | 2018.11.30 |