首页 > TAG信息列表 > stmin
实验七
Part 1: 1: // 从文本文件file1.dat中读取数据,找出最高分和最低分学生信息,并输出在屏幕上 #include <stdio.h> #include <stdlib.h> #define N 10 // 定义一个结构体类型STU typedef struct student { int num; char name[20]; int score; }STU; int main() {实验七
Part1验证性实验 验证性实验2 // 从文本文件file1.dat中读取数据,找出最高分和最低分学生信息,并输出在屏幕上 #include <stdio.h> #include <stdlib.h> #define N 10 // 定义一个结构体类型STU typedef struct student { int num; char name[20]; int score; }STU实验7
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; char name[20]; float objective; /*客观题得分*/ float subjective; /*标题七
#include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; }STU; int main() { STU st, stmax, stmin; int i; FILE *fp; fp = fopen("file1.dat", "r"); if( !fp第七次实验
part1: // 从文本文件file1.dat中读取数据,找出最高分和最低分学生信息,并输出在屏幕上#include <stdio.h> #include <stdlib.h>#define N 10// 定义一个结构体类型STU typedef struct student { int num; char name[20]; int score;}STU;int main() { STU st, stmax, s第七次实验~
part 1: 验证性实验2 对line29作修改后: #include <stdio.h> #include <stdlib.h>#define N 10// 定义一个结构体类型STU typedef struct student { int num; char name[20]; int score;}STU;int main() { STU st, stmax, stmin; int i; FILE *fp; // 以只