<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
有朋友最近在做c語言課設,要求寫一個班級成績管理系統,便寫份簡單的程式碼來玩。程式碼原創,未參考任何其他人的程式碼
怎麼使用本程式看看註釋應該就知道了。run main.c 就行。其他各檔案作用:
main.c
#include "menu.c" int main() { select(); return 0; }
def.c
// 相同標頭檔案只包含一次,後不贅述 #pragma once #include <stdio.h> #include <stdlib.h> #include <string.h> #define OK 1 #define ERROR 0 #define TRUE 1 #define FALSE 0 #define Status int // 課程 typedef struct Course { char name[30]; int score; } Course, *pCourse; // 學生 typedef struct Student { char number[30]; char name[30]; pCourse pC; } Student, *pStudent; // n是學生數, m是課程數 int n, m; char courseName[30], studentName[30], course[20][30]; pStudent pS = NULL;
myIO.c
#pragma once #include "def.c" pStudent inputStudentInfo(void); void printStudentInfo(pStudent pS); // 錄入學生資訊 pStudent inputStudentInfo(void) { int i, j; printf("Please input the number of students and courses: "); scanf("%d %d", &n, &m); printf("Please input the name of courses: "); for (i = 0; i < m; i++) { scanf("%s", course[i]); } pStudent pS = (pStudent)malloc(sizeof(Student) * n); if (!pS) return NULL; printf("Please input the info: n"); for (i = 0; i < n; i++) { pS[i].pC = (pCourse)malloc(sizeof(Course) * m); if (!pS[i].pC) return NULL; scanf("%s %s", pS[i].name, pS[i].number); for (j = 0; j < m; j++) { strcpy(pS[i].pC[j].name, course[j]); scanf("%d", &pS[i].pC[j].score); } } return pS; } // 列印所有學生資訊 void printStudentInfo(pStudent pS) { int i, j; // 列印標題 printf("Nametnumbert"); for (i = 0; i < m - 1; i++) printf("%st", course[i]); printf("%sn", course[i]); // 顯示資訊 for (i = 0; i < n; i++) { printf("%st%st", pS[i].name, pS[i].number); for (j = 0; j < m - 1; j++) printf("%dt", pS[i].pC[j].score); printf("%dn", pS[i].pC[j].score); } }
file.c
#pragma once #include "def.c" Status saveStudentInfo(pStudent pS); Status saveStudentInfo(pStudent pS) { FILE *fp; int i, j; char filename[30], str[100] = "student number"; printf("please input the filename: "); scanf("%s", filename); fp = fopen(filename, "w"); if (!fp) return ERROR; for (i = 0; i < m; i++) { strcat(str, " "); strcat(str, course[i]); } strcat(str, "n"); for (i = 0; i < n; i++) { strcat(str, pS[i].name); strcat(str, " "); strcat(str, pS[i].number); for (j = 0; j < m; j++) { char score[30]; itoa(pS[i].pC[j].score, score, 10); strcat(str, " "); strcat(str, score); } strcat(str, "n"); } fputs(str, fp); fclose(fp); return OK; }
menu.c
#pragma once #include "def.c" #include "myIO.c" #include "file.c" #include "function.c" void menu(); void select(); // 選單 void menu() { printf("------------------------------------n"); printf("| Menu |n"); printf("| 1. input |n"); printf("| 2. show |n"); printf("| 3. save |n"); printf("| 4. sort |n"); printf("| 5. modify |n"); printf("| 6. count |n"); printf("| 0. exit |n"); printf("------------------------------------n"); } void select() { int branch; while (TRUE) { system("cls"); menu(); printf("[Input]: "); scanf("%d", &branch); if (!branch) break; switch (branch) { case 1: { pS = inputStudentInfo(); if (pS == NULL) printf("input error! please input againn"); else printf("Input success!n"); system("pause"); break; } case 2: { printStudentInfo(pS); system("pause"); break; } case 3: { if (OK == saveStudentInfo(pS)) printf("Save success!n"); else printf("Save fail!n"); system("pause"); break; } case 4: { sort(pS); printf("sort successn"); system("pause"); break; } case 5: { int res = modify(pS); if (res) { printf("change success!n"); } else { printf("change fail!n"); } system("pause"); break; } case 6: { int choose; // 輸入1 顯示每門課程最高成績資訊 // 輸入2 顯示每門課程平均成績資訊 printf("choose 1 for the highest score: n "); printf("choose 2 for the average score: n"); printf("[Input]: "); scanf("%d", &choose); if (choose == 1) { showMax(pS); } else if (choose == 2) { showAverage(pS); } else { // 輸入非法提示資訊 printf("Input error!n"); } system("pause"); break; } } } }
function.c
#include "def.c" void sort(pStudent pS); void Swap(pStudent s1, pStudent s2); void showAverage(pStudent pS); void showMax(pStudent pS); Status modify(pStudent pS); // 按課程成績排序 void sort(pStudent pS) { int courseNumber, i, j, k; char courseName[30]; printf("please input the course name which you want to sort: "); scanf("%s", courseName); for (courseNumber = 0; courseNumber < m; courseNumber++) if (strcmp(course[courseNumber], courseName) == 0) break; // 如果找不到課程,則認為是按總分排序 if (courseNumber == m) { printf("Sort as total score: n"); // 選擇排序 for (i = 0; i < n - 1; i++) { int flag = i; for (j = i + 1; j < n; j++) { int totalScore_1 = 0, totalScore_2 = 0; for (k = 0; k < m; k++) { totalScore_1 += pS[j].pC[k].score; totalScore_2 += pS[flag].pC[k].score; } if (totalScore_1 > totalScore_2) { flag = j; } } Swap(&pS[i], &pS[flag]); } } else { // 選擇排序 for (i = 0; i < n - 1; i++) { int flag = i; for (j = i + 1; j < n; j++) { if (pS[j].pC[courseNumber].score > pS[flag].pC[courseNumber].score) { flag = j; } } Swap(&pS[i], &pS[flag]); } } } // 修改學生資訊 Status modify(pStudent pS) { // 密碼是1314 char password[30] = "1314", psd[30]; char number[30]; int score, i, j; printf("please input password: "); scanf("%s", psd); // 密碼正確才繼續,否則返回ERROR if (strcmp(password, psd) == 0) { printf("please input the student's number: "); scanf("%s", number); for (i = 0; i < n; i++) { // 找到學生則繼續,否則返回ERROR if (strcmp(pS[i].number, number) == 0) { printf("please input the course and score one by one: n"); scanf("%s %d", courseName, &score); for (j = 0; j < m; j++) { // 找到課程才繼續,否則返回ERROR if (strcmp(pS[i].pC[j].name, courseName) == 0) { // 修改課程成績 pS[i].pC[j].score = score; return OK; } } return ERROR; } } return ERROR; } else return ERROR; } // 輸出各課程最高分的學生 void showMax(pStudent pS) { int i, j, max; for (i = 0; i < m; i++) { max = 0; for (j = 0; j < n; j++) { if (pS[j].pC[i].score > pS[max].pC[i].score) max = j; } printf("%st%st%st%dn", course[i], pS[max].name, pS[max].number, pS[max].pC[i].score); } } // 顯示各課程的平均成績 void showAverage(pStudent pS) { int i, j; double ave; for (i = 0; i < m; i++) { ave = 0; for (j = 0; j < n; j++) { ave += pS[j].pC[i].score; } printf("%st%.2lfn", course[i], ave / n); } } void Swap(pStudent s1, pStudent s2) { int i; char studentName[30], number[30]; // 交換姓名 strcpy(studentName, s1->name); strcpy(s1->name, s2->name); strcpy(s2->name, studentName); // 交換學號 strcpy(number, s1->number); strcpy(s1->number, s2->number); strcpy(s2->number, number); // 交換成績 for (i = 0; i < m; i++) { int temp = s1->pC[i].score; s1->pC[i].score = s2->pC[i].score; s2->pC[i].score = temp; } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45