#include <stdio.h> #include <string.h> #include <stdlib.h> // 定义结构体类型 struct Student { char id[10]; // 学号 char name[20]; // 姓名 char gender[10]; // 性别 int chinese; // 语文成绩 int math; // 数学成绩 int english; // 英语成绩 }; // 初始化几个学生的基本信息 struct Student students[] = { {"1001", "张三", "Male", 80, 90, 85}, {"1002", "李四", "Female", 75, 85, 90}, {"1003", "王五", "Male", 90, 80, 95}, {"1004", "赵六", "Female", 85, 95, 80}, {"1005", "钱七", "Male", 95, 85, 90} }; int count=5; // 学生数量 编写一个函数,实现从键盘上输入学生信息,增添该学生的信息并输出
时间: 2023-07-19 07:18:55 浏览: 148
#include "stdio.h" /* 输入输出函数的头文件 */
好的,可以使用下面的代码实现从键盘上输入学生信息,并将该学生的信息添加到 `students` 数组中:
```c
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
// 定义结构体类型
struct Student {
char id[10]; // 学号
char name[20]; // 姓名
char gender[10]; // 性别
int chinese; // 语文成绩
int math; // 数学成绩
int english; // 英语成绩
};
// 初始化几个学生的基本信息
struct Student students[] = {
{"1001", "张三", "Male", 80, 90, 85},
{"1002", "李四", "Female", 75, 85, 90},
{"1003", "王五", "Male", 90, 80, 95},
{"1004", "赵六", "Female", 85, 95, 80},
{"1005", "钱七", "Male", 95, 85, 90}
};
int count = 5; // 学生数量
// 函数声明
void printStudents(struct Student students[], int count);
void addStudent(struct Student students[], int* count);
int main() {
// 输出学生信息
printStudents(students, count);
// 添加学生信息
addStudent(students, &count);
// 输出学生信息
printStudents(students, count);
return 0;
}
// 输出学生信息
void printStudents(struct Student students[], int count) {
printf("学号\t姓名\t性别\t语文\t数学\t英语\n");
for (int i = 0; i < count; i++) {
printf("%s\t%s\t%s\t%d\t%d\t%d\n", students[i].id, students[i].name, students[i].gender, students[i].chinese, students[i].math, students[i].english);
}
printf("\n");
}
// 添加学生信息
void addStudent(struct Student students[], int* count) {
struct Student newStudent;
printf("请输入学生信息:\n");
printf("学号:");
scanf("%s", newStudent.id);
printf("姓名:");
scanf("%s", newStudent.name);
printf("性别:");
scanf("%s", newStudent.gender);
printf("语文成绩:");
scanf("%d", &newStudent.chinese);
printf("数学成绩:");
scanf("%d", &newStudent.math);
printf("英语成绩:");
scanf("%d", &newStudent.english);
students[*count] = newStudent;
(*count)++;
}
```
在这个代码中,我们定义了一个 `addStudent` 函数,该函数从键盘上输入学生信息,将该学生的信息添加到 `students` 数组中,并将学生数量 `count` 加 1。同时,我们还定义了一个 `printStudents` 函数,用于输出学生信息。在 `main` 函数中,我们首先输出原有的学生信息,然后调用 `addStudent` 函数添加一个新的学生信息,最后再次输出所有的学生信息。
阅读全文