码迷,mamicode.com
首页 >  
搜索关键字:结构体类型    ( 535个结果
实验七
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:其他好文   时间:2019-12-26 16:01:47    阅读次数:72
实验七
// 从文本文件file1.dat中读取数据,找出最高分和最低分学生信息,并输出在屏幕上 #include <stdio.h> #include <stdlib.h> #define N 10 // 定义一个结构体类型STU typedef struct student { int num; cha ...
分类:其他好文   时间:2019-12-25 20:20:38    阅读次数:63
实验6
1-2 #include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int sco ...
分类:其他好文   时间:2019-12-25 01:55:41    阅读次数:83
实验6
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:其他好文   时间:2019-12-25 01:54:14    阅读次数:99
实验六
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:其他好文   时间:2019-12-25 01:33:16    阅读次数:52
实验六
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:其他好文   时间:2019-12-25 01:24:34    阅读次数:60
实验六
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:其他好文   时间:2019-12-25 01:14:36    阅读次数:61
实验六
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:其他好文   时间:2019-12-24 23:22:01    阅读次数:70
实验六
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:其他好文   时间:2019-12-24 22:03:35    阅读次数:75
实验六
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:其他好文   时间:2019-12-24 18:34:44    阅读次数:61
535条   上一页 1 ... 6 7 8 9 10 ... 54 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!