일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html
- c++
- Array
- Arduino
- directx
- queue
- WinAPI
- stl
- arduino compiler
- 아두이노 소스
- 아두이노 컴파일러
- 컴퓨터 그래픽스
- 라인트레이서
- map
- Deque
- 수광 소자
- Algorithm
- LineTracer
- C언어
- vector
- list
- 아두이노
- Stack
- set
- 통계학
- 시스템프로그래밍
- 자료구조
- Visual Micro
- 운영체제
- priority_queue
- Today
- Total
목록SW ExpertAcademy/D1 (19)
Kim's Programming
1936. 1대1 가위바위보문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PjKXKALcDFAUq&categoryId=AV5PjKXKALcDFAUq&categoryType=CODE 풀이 방법 #include int main() { int inputA{0}, inputB{0}; std::cin>>inputA>>inputB; if(inputA==1) { if(inputB==2) std::cout
2019. 더블더블문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QDEX6AqwDFAUq&categoryId=AV5QDEX6AqwDFAUq&categoryType=CODE 풀이 방법 #include int main() { int first{1}; int input{0}; std::cin>>input; for(int i=0;i
1545. 거꾸로 출력해 보아요 문제출처:https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV2gbY0qAAQBBAS0&categoryId=AV2gbY0qAAQBBAS0&categoryType=CODE 풀이 방법 #include int main() { int n{0}; std::cin>>n; for(int i = n ; i >= 0 ; i--) std::cout