码迷,mamicode.com
首页 >  
搜索关键字:结构体类型    ( 535个结果
实验六
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
实验6 结构体、共用体与枚举
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
实验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-21 13:32:45    阅读次数:57
实验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-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
实验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-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
535条   上一页 1 ... 9 10 11 12 13 ... 54 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!