C语言从键盘读入学生信息:学号、姓名、年龄、成绩
时间: 2023-09-17 13:11:23 浏览: 503
可以使用C语言中的scanf函数从键盘读入学生信息,示例代码如下:
```c
#include <stdio.h>
int main() {
int stu_id, age;
float score;
char name[20];
printf("请输入学生信息:\n");
printf("学号:");
scanf("%d", &stu_id);
printf("姓名:");
scanf("%s", name);
printf("年龄:");
scanf("%d", &age);
printf("成绩:");
scanf("%f", &score);
printf("\n学生信息如下:\n");
printf("学号:%d\n", stu_id);
printf("姓名:%s\n", name);
printf("年龄:%d\n", age);
printf("成绩:%f\n", score);
return 0;
}
```
在示例代码中,使用了scanf函数从键盘读入学生信息,其中%d表示读入整数,%s表示读入字符串,%f表示读入浮点数。注意,在读入字符串时,需要使用%s并指定一个字符数组作为参数,用于存储读入的字符串。读入完成后,可以使用printf函数输出学生信息。
相关问题
c语言中怎么从键盘上读入学生信息:学号,姓名,年龄,成绩,根据成绩从高到低将学生信息输出
你可以使用 scanf 函数从键盘上读入学生信息,然后使用结构体存储学生信息,再使用排序算法(如冒泡排序、快速排序等)根据成绩从高到低将学生信息输出。代码实现详见以下示例:
```c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_SIZE 100
typedef struct {
char id[20];
char name[20];
int age;
float score;
} student;
int main() {
int n, i, j;
student stu[MAX_SIZE], temp;
printf("请输入学生人数:");
scanf("%d", &n);
for (i = 0; i < n; i++) {
printf("请输入第 %d 个学生的学号、姓名、年龄、成绩,用空格隔开:\n", i + 1);
scanf("%s %s %d %f", stu[i].id, stu[i].name, &stu[i].age, &stu[i].score);
}
// 冒泡排序
for (i = 0; i < n - 1; i++) {
for (j = 0; j < n - 1 - i; j++) {
if (stu[j].score < stu[j + 1].score) {
temp = stu[j];
stu[j] = stu[j + 1];
stu[j + 1] = temp;
}
}
}
// 输出学生信息
printf("学号\t\t姓名\t\t年龄\t\t成绩\n");
for (i = 0; i < n; i++) {
printf("%s\t%s\t%d\t%.2f\n", stu[i].id, stu[i].name, stu[i].age, stu[i].score);
}
return 0;
}
```
C语言用vs2022运行程序:有n个学生,每个学生数据包括学号、姓名、性别、3门成绩、总成绩、平均成绩。从键盘输入n和n个学生的数据(总成绩和平均成绩可通过3门成绩算出),输入的n个学生的数据放入结构体数组a中。然后将学生数n和这n个学生的数据存储到名为stud.dat的二进制文件中。之后读入文件中的数据放到变量n1和结构体数组b中,输出数组b中的学生数据。编写源程序,给出注释及运行结果。
好的,我会尽力回答你的问题,并且不会透露你的要求。以下是对你的问题的回答:
首先,为了实现输入n个学生的数据,我们需要定义一个结构体来存储每个学生的信息,如下所示:
```c
struct student {
int id; // 学号
char name[20]; // 姓名
char sex; // 性别
float score1; // 第一门成绩
float score2; // 第二门成绩
float score3; // 第三门成绩
float total; // 总成绩
float average; // 平均成绩
};
```
然后,我们可以定义一个结构体数组来存储n个学生的数据:
```c
struct student a[100]; // 最多存储100个学生的数据
```
接下来,我们可以通过循环来从键盘输入n个学生的数据,并计算总成绩和平均成绩:
```c
int n; // 学生数
scanf("%d", &n); // 从键盘输入学生数
for (int i = 0; i < n; i++) {
scanf("%d %s %c %f %f %f", &a[i].id, a[i].name, &a[i].sex,
&a[i].score1, &a[i].score2, &a[i].score3);
a[i].total = a[i].score1 + a[i].score2 + a[i].score3;
a[i].average = a[i].total / 3;
}
```
接下来,我们可以将学生数n和这n个学生的数据存储到名为stud.dat的二进制文件中:
```c
FILE *fp;
fp = fopen("stud.dat", "wb"); // 打开二进制文件
fwrite(&n, sizeof(int), 1, fp); // 将学生数n写入文件
fwrite(a, sizeof(struct student), n, fp); // 将学生数据写入文件
fclose(fp); // 关闭文件
```
最后,我们可以从文件中读取数据,将学生数n1和结构体数组b中,输出数组b中的学生数据:
```c
struct student b[100]; // 最多存储100个学生的数据
int n1; // 学生数
fp = fopen("stud.dat", "rb"); // 打开二进制文件
fread(&n1, sizeof(int), 1, fp); // 从文件中读取学生数n1
fread(b, sizeof(struct student), n1, fp); // 从文件中读取学生数据到数组b中
fclose(fp); // 关闭文件
// 输出学生数据
for (int i = 0; i < n1; i++) {
printf("%d %s %c %f %f %f %f %f\n", b[i].id, b[i].name, b[i].sex,
b[i].score1, b[i].score2, b[i].score3, b[i].total, b[i].average);
}
```
完整的源代码如下:
```c
#include <stdio.h>
struct student {
int id; // 学号
char name[20]; // 姓名
char sex; // 性别
float score1; // 第一门成绩
float score2; // 第二门成绩
float score3; // 第三门成绩
float total; // 总成绩
float average; // 平均成绩
};
int main() {
struct student a[100]; // 最多存储100个学生的数据
int n; // 学生数
scanf("%d", &n); // 从键盘输入学生数
for (int i = 0; i < n; i++) {
scanf("%d %s %c %f %f %f", &a[i].id, a[i].name, &a[i].sex,
&a[i].score1, &a[i].score2, &a[i].score3);
a[i].total = a[i].score1 + a[i].score2 + a[i].score3;
a[i].average = a[i].total / 3;
}
FILE *fp;
fp = fopen("stud.dat", "wb"); // 打开二进制文件
fwrite(&n, sizeof(int), 1, fp); // 将学生数n写入文件
fwrite(a, sizeof(struct student), n, fp); // 将学生数据写入文件
fclose(fp); // 关闭文件
struct student b[100]; // 最多存储100个学生的数据
int n1; // 学生数
fp = fopen("stud.dat", "rb"); // 打开二进制文件
fread(&n1, sizeof(int), 1, fp); // 从文件中读取学生数n1
fread(b, sizeof(struct student), n1, fp); // 从文件中读取学生数据到数组b中
fclose(fp); // 关闭文件
// 输出学生数据
for (int i = 0; i < n1; i++) {
printf("%d %s %c %f %f %f %f %f\n", b[i].id, b[i].name, b[i].sex,
b[i].score1, b[i].score2, b[i].score3, b[i].total, b[i].average);
}
return 0;
}
```
运行结果示例如下:
```
3
1001 Tom M 80 90 70
1002 Jerry F 85 75 80
1003 Bob M 70 80 75
1001 Tom M 80.000000 90.000000 70.000000 240.000000 80.000000
1002 Jerry F 85.000000 75.000000 80.000000 240.000000 80.000000
1003 Bob M 70.000000 80.000000 75.000000 225.000000 75.000000
```
阅读全文