일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Arduino
- html
- Algorithm
- Array
- C언어
- 시스템프로그래밍
- 운영체제
- c++
- vector
- stl
- 통계학
- queue
- Deque
- 자료구조
- arduino compiler
- set
- 아두이노 소스
- 라인트레이서
- WinAPI
- directx
- map
- priority_queue
- 아두이노
- Visual Micro
- 아두이노 컴파일러
- list
- 컴퓨터 그래픽스
- 수광 소자
- LineTracer
- Stack
- Today
- Total
목록전체 글 (545)
Kim's Programming
2058. 자릿수 더하기문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QPRjqA10DFAUq&categoryId=AV5QPRjqA10DFAUq&categoryType=CODE 풀이 방법 #include int main() { int input{0}; int sum{0}; std::cin>>input; for(int i=0;i
2056. 연월일 달력문제출처:https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QLkdKAz4DFAUq&categoryId=AV5QLkdKAz4DFAUq&categoryType=CODE 풀이 방법 #include int main() { int n{0}; std::cin>>n; for(int testCase =1 ; testCase>input; int year = input / 10000; input = input - (year * 10000); int month = input / 100; input = input%100; if(month 12) isValid =false; switch(month) { c..
2050. 알파벳을 숫자로 변환문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QLGxKAzQDFAUq&categoryId=AV5QLGxKAzQDFAUq&categoryType=CODE 풀이 방법 #include #include int main() { char input[200 +1]; std::cin>>input; int length = strlen(input); for(int i=0;i
2047. 신문 헤드라인문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QKsLaAy0DFAUq&categoryId=AV5QKsLaAy0DFAUq&categoryType=CODE 풀이 방법toupper 함수를 사용하여 직접 올려도 상관없으나 직접 구현을 해보았다 #include #include char checker(char c) { if(static_cast(c) 122) return c; return c-32; } int main() { char input[80 + 1]; std::cin>>input; int length = strlen(input); for(int i=0;i
2046. 스탬프 찍기문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QKdT6AyYDFAUq&categoryId=AV5QKdT6AyYDFAUq&categoryType=CODE 풀이 방법 #include int main() { int input{0}; std::cin>>input; for(int i=0;i
2043. 서랍의 비밀번호 문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QJ_8KAx8DFAUq&categoryId=AV5QJ_8KAx8DFAUq&categoryType=CODE 풀이 방법 #include int main() { int inputK{0},inputP{0}; std::cin>>inputK>>inputP; std::cout
2029. 몫과 나머지 출력하기문제출처:https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QGNvKAtEDFAUq&categoryId=AV5QGNvKAtEDFAUq&categoryType=CODE 풀이 방법 #include int main() { int inputCase {0}; std::cin>>inputCase; for(int i=1;i>input1>>input2; std::cout