일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 윤파고
- 숫타니파아타
- 최단경로문제
- 그래프2
- 맥북에서 wxMaxima 설치
- playground배열
- 집착형
- 데이터베이스시스템
- 쌍대성원리
- 오일러투어
- 2023채용박람회
- 다자녀장학금
- 합의정리
- 티스토리챌린지
- 오블완
- 무소의뿔
- wxmaxima
- 등록금0원
- 제거된값 첨부하기
- wxMaxima install for mac os
- 정보처리기사공부방법
- 이분그래프
- 배윤슬
- 허스켈그래프
- 아이엔이야기
- 이런 사람에게 "절대" 돈과 시간 쓰지 마세요. (이헌주 교수 3부)
- kgol
- 나르시스트
- 청년도배사 이야기
- 직선의방정식
- Today
- Total
목록전체 글 (127)
사적공간
층수는 육안으로 아래부터 1층임. ex) apt[4][0] 1층 #include #include using namespace std;int apt[5][3] = {{15, 18, 17},{4, 6, 9},{10, 1, 3},{7, 8, 9},{15, 2, 6}};int arr[3];int isPattern(int y) { if (apt[y][0] == arr[0] && apt[y][1] == arr[1] && apt[y][2] == arr[2]) { return 1; } return 0; }int main() { cin >> arr[0]; cin >> arr[1]; cin >> arr[2]; int chk, l,y,x; for (y = 0; y
#include #include using namespace std;char alphabet[5][3] = { {'A', 'B', 'C'}, {'A', 'G', 'H'}, {'H', 'I', 'J'}, {'K', 'A', 'B'}, {'A', 'B', 'C'}};int main() { int dat[100] = { 0 }; // 초기화 for (int y = 0; y 0) { // dat배열에 저장된 값이 0보다 크면 for (int k = 0; k
#include #include using namespace std;int main() { char town[3][3] = { {'C', 'D', 'A'}, {'B', 'M', 'Z'}, {'Q', 'P', 'O'} }; char arr[4]; int dat[100] = { 0 }; for (int i = 0; i > arr[i]; dat[arr[i]]++; } int cnt = 0; for (int y = 0; y 0) { cnt++; } } } cout