int main() { int count=3; struct Student student; struct Course courses[MAX_COURSES]; int numCourses = 0; struct Score scores[MAX_COURSES]; int numScores = 0; char name[MAX_NAME_LEN]; char password[MAX_NAME_LEN]; while(count>0) { printf("请输入用户名和密码(用户名是manager;密码111111):\n"); printf("用户名:"); scanf("%s", name); printf("密码:"); scanf("%s", password); if (strcmp(name, user.name) != 0 || strcmp(password, user.password) != 0) { printf("用户名或密码错误!\n"); count--; printf("还剩%d次", count); if(count==0) { return 0; } }else{ break; } } while (1) { switch (menu()) { case 1: basicSettings(&student, courses, &numCourses); break; case 2: evaluation(courses, numCourses, scores, &numScores); break; case 3: int other; printf("1.查平均打分:\n"); printf("2.查成绩打分:\n"); scanf("%s", other); if(other=1) { statistics(scores, numScores); break; }else { showScores( scores, numScores); break; } case 4: printf("谢谢使用,再见!\n"); return 0; default: printf("无效的输入,请重新输入!\n"); } } return 0; } void showScores(struct Score scores[], int numScores) { printf("\n--------查询评教分数--------\n"); for (int i = 0; i < numScores; i++) { printf("%s:%d\n", scores[i].courseName, scores[i].score); } } void statistics(struct Score scores[], int numScores) { //numscores printf("\n--------统计评教分数--------\n"); int total = 0; for (int i = 0; i < numScores; i++) { total += scores[i].score; } if (numScores != 0) { printf("平均分数:%d\n", total / numScores); } else { printf("还没有评教记录!\n"); } } 将这些代码优化一下
时间: 2024-01-22 07:04:11 浏览: 59
CC++日期时间time_t与struct_tm转换
5星 · 资源好评率100%
这段代码存在一些问题,例如在菜单选项3中,输入参数的类型应该为int而不是char,还有if语句的条件语句应该使用==而不是=。
以下是对代码的优化:
1. 将结构体定义放在main函数之前,方便代码的维护和扩展。
2. 将用户名和密码的验证逻辑封装成一个函数,提高代码的可读性和可维护性。
3. 在菜单选项3中,使用if-else语句代替switch语句,使代码更加简洁。
4. 在菜单选项3中,输入参数的类型改为int,并使用while循环判断输入是否合法。
5. 在菜单选项3中,使用函数指针数组实现函数的调用,提高代码的可扩展性和可维护性。
6. 在统计评教分数的函数中,将参数的注释修改为正确的描述。
以下是优化后的代码:
```c
#include <stdio.h>
#include <string.h>
#define MAX_NAME_LEN 20
#define MAX_COURSES 100
struct Student {
char name[MAX_NAME_LEN];
int age;
};
struct Course {
char name[MAX_NAME_LEN];
int credit;
};
struct Score {
char courseName[MAX_NAME_LEN];
int score;
};
void verifyUser();
int menu();
void basicSettings(struct Student *student, struct Course courses[], int *numCourses);
void evaluation(struct Course courses[], int numCourses, struct Score scores[], int *numScores);
void showScores(struct Score scores[], int numScores);
void statistics(struct Score scores[], int numScores);
int main() {
struct Student student;
struct Course courses[MAX_COURSES];
int numCourses = 0;
struct Score scores[MAX_COURSES];
int numScores = 0;
verifyUser();
while (1) {
switch (menu()) {
case 1:
basicSettings(&student, courses, &numCourses);
break;
case 2:
evaluation(courses, numCourses, scores, &numScores);
break;
case 3: {
int other;
printf("1.查平均打分:\n");
printf("2.查成绩打分:\n");
while (scanf("%d", &other) != 1 || (other != 1 && other != 2)) {
printf("无效的输入,请重新输入!\n");
while (getchar() != '\n');
}
void (*func[])(struct Score[], int) = {statistics, showScores};
(*func[other - 1])(scores, numScores);
break;
}
case 4:
printf("谢谢使用,再见!\n");
return 0;
default:
printf("无效的输入,请重新输入!\n");
}
}
return 0;
}
void verifyUser() {
int count = 3;
char name[MAX_NAME_LEN];
char password[MAX_NAME_LEN];
while (count > 0) {
printf("请输入用户名和密码(用户名是manager;密码111111):\n");
printf("用户名:");
scanf("%s", name);
printf("密码:");
scanf("%s", password);
if (strcmp(name, "manager") != 0 || strcmp(password, "111111") != 0) {
printf("用户名或密码错误!\n");
count--;
printf("还剩%d次\n", count);
if (count == 0) {
printf("没有权限!\n");
return;
}
}
else {
break;
}
}
}
int menu() {
int choice;
printf("\n--------学生评教系统--------\n");
printf("1.基本设置\n");
printf("2.评教\n");
printf("3.查询评教分数\n");
printf("4.退出\n");
printf("请输入选项:");
while (scanf("%d", &choice) != 1 || choice < 1 || choice > 4) {
printf("无效的输入,请重新输入!\n");
while (getchar() != '\n');
}
return choice;
}
void basicSettings(struct Student *student, struct Course courses[], int *numCourses) {
printf("请输入学生姓名:");
scanf("%s", student->name);
printf("请输入学生年龄:");
scanf("%d", &student->age);
printf("请输入课程数量:");
scanf("%d", numCourses);
for (int i = 0; i < *numCourses; i++) {
printf("请输入第%d门课程名称和学分:", i + 1);
scanf("%s %d", courses[i].name, &courses[i].credit);
}
}
void evaluation(struct Course courses[], int numCourses, struct Score scores[], int *numScores) {
printf("请输入评教分数:\n");
for (int i = 0; i < numCourses; i++) {
printf("%s:", courses[i].name);
scanf("%d", &scores[*numScores].score);
strcpy(scores[*numScores].courseName, courses[i].name);
(*numScores)++;
}
printf("评教完成!\n");
}
void showScores(struct Score scores[], int numScores) {
printf("\n--------查询评教分数--------\n");
for (int i = 0; i < numScores; i++) {
printf("%s:%d\n", scores[i].courseName, scores[i].score);
}
}
void statistics(struct Score scores[], int numScores) {
printf("\n--------统计评教分数--------\n");
int total = 0;
for (int i = 0; i < numScores; i++) {
total += scores[i].score;
}
if (numScores != 0) {
printf("平均分数:%d\n", total / numScores);
}
else {
printf("还没有评教记录!\n");
}
}
```
阅读全文