일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- WinAPI
- 아두이노 소스
- Deque
- 자료구조
- html
- directx
- Stack
- 시스템프로그래밍
- 통계학
- arduino compiler
- C언어
- 아두이노 컴파일러
- LineTracer
- Array
- Arduino
- 수광 소자
- 운영체제
- 컴퓨터 그래픽스
- vector
- Visual Micro
- 라인트레이서
- Algorithm
- list
- c++
- stl
- queue
- priority_queue
- set
- 아두이노
- map
- Today
- Total
목록전체 글 (545)
Kim's Programming
2025. N줄덧셈문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QFZtaAscDFAUq&categoryId=AV5QFZtaAscDFAUq&categoryType=CODE 풀이 방법가우스 합 사용 #include int main() { int input{0}; std::cin>>input; std::cout
1545. 거꾸로 출력해 보아요문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PjsYKAMIDFAUq&categoryId=AV5PjsYKAMIDFAUq&categoryType=CODE 풀이 방법 #include int main() { int input1{0},input2{0}; std::cin>>input1>>input2; std::cout
1933. 간단한 N 의 약수 문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PhcWaAKIDFAUq&categoryId=AV5PhcWaAKIDFAUq&categoryType=CODE 풀이 방법 #include int main() { int input{0}; std::cin>>input; for(int i=1;i
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
단독으로 스크립트에 sys.exit()를 했을때는 종료가 되지 않는다. 이유는 모르겠는데 if문을 이용하여 if file.closed:sys.exit() 같은 방식으로 처리를 하니 종료가 된다. (일반적인 곳에서는 상관없지만 python을 exe파일로 만들어서 C++언어상에서 createprocess 함수를 통하여 실행을 시켰을 때는 위와 같은 방법으로 했을때만 처리가 된다. --추가 한 스크립트에서 인스턴스가 남아있는 경우 종료가 되지 않는거 같다. 각 인스턴스의 close 매소드들을 이용하여 열어준것들을 닫아 주면 자연스레 종료가 된다
sys.exit()를 이용할때는 양수값을 리턴하게 된다. 음수를 리턴시키면 오버플로가 일어남.