1. #include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int scor ...
分类:
其他好文 时间:
2019-12-22 12:54:21
阅读次数:
59
Part1: 结构体类型及编程应用 补足程序ex1_2.cpp,附上补足后的程序源码,输入不同测试数据,给出运行结果截图 #include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 ...
分类:
其他好文 时间:
2019-12-22 12:42:10
阅读次数:
68
实验六内容如下: Part1 #include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[2 ...
分类:
其他好文 时间:
2019-12-22 00:43:53
阅读次数:
92
#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-22 00:34:30
阅读次数:
106
Part 1 #include <stdio.h>#include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int s ...
分类:
其他好文 时间:
2019-12-21 20:49:15
阅读次数:
78
#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-21 13:32:45
阅读次数:
57
#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-21 13:32:00
阅读次数:
55
#include <stdio.h> #include <string.h> const int N=3; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; char name[20]; float o ...
分类:
其他好文 时间:
2019-12-21 11:54:31
阅读次数:
69
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-21 09:50:24
阅读次数:
56
#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-21 00:02:55
阅读次数:
68