본문 바로가기
728x90

분류 전체보기17

[개인학습자료] C언어 - 단어장 프로그램 ver.1 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 1.. 2020. 3. 27.
[개인학습자료] C언어 - 구조체를 이용한 학생 성적 프로그램 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 32 33 34 35 36 37 38 39 40 41 42 43 #include #include #include #include #define st 20 struct student { char num[5]; double point; }; int main() { struct student class_a[st]; int i; int value; srand((unsigned)time(NULL)); for (i = 0; i 2020. 3. 27.
[개인학습자료] C언어 - 회원가입/로그인 프로그램 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 #include #include #include #include #include #.. 2020. 3. 27.
[개인학습자료] C언어 - 두개의 배열를 합쳐 오름차순 정렬하기 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 #include #include #include #define space 10 void sequence(int a[], int n); // 오름차순 함수 void print_normal(int a[], .. 2020. 3. 27.
[개인학습자료] C언어 - 오름차순 정렬 함수 (알고리즘) void sequence(int a[], int n) { //먼저 앞뒤 값비교, 순서틀리면 tmp이용해서 바꾸기 int tmp; int *p = a; for (int x = 0; x *(p + i + 1)) { tmp = *(p + i); *(p + i) = *(p + i + 1); *(p + i + 1) = tmp; } /* //과정 보여주기 for (int j = 0; j < n; j++) { printf("%d ", a[j]); } puts("");*/ } } } (본 프로그램은 저자 본인인 직접만든 프로그램임을 명시합니다.) (CCL동의로 허락받고 출처를 작성한 사진외는 제 개인사진들 임을 밝.. 2020. 3. 27.
[개인학습자료] C언어 - 2020년 달력 프로그램 include //2020년 달력 프로그램 int main(void) { int day = 1;//요일 int year = 2020;//년도 int date;//날짜 int month;//달 int month_date;//해당 달의 마지막날 int year_check = ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0);//윤년체크 int n;//여분의 값 puts("---- 2020년 ----"); puts(""); puts(""); for (month = 1; month < 13; month++) { printf("------ %d월 ------\n", month); //해당 달의 마지막날 계산 switch (month) { case 2: if.. 2020. 3. 27.
728x90