part1 #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-24 09:24:58
阅读次数:
45
part1 ex1-2 #include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; ...
分类:
其他好文 时间:
2019-12-24 09:16:53
阅读次数:
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-23 22:47:28
阅读次数:
82
ex1_2 #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-23 13:29:53
阅读次数:
44
#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-23 13:16:07
阅读次数:
65
#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-23 11:45:33
阅读次数:
81
地址:donut:https://github.com/TheWover/donut 介绍:Donut是一个shellcode生成工具,可以将.NET程序集等转换为shellcode。 使用:donut.exe -f (指定文件名) -a 2 (系统位数2代表64位) -o (输出文件名) msf设 ...
分类:
其他好文 时间:
2019-12-23 10:22:18
阅读次数:
83
#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-23 00:25:09
阅读次数:
83
#include <stdio.h> #include <stdlib.h> const int N=5; typedef struct student { long no; char name[20]; int score; }STU; void input(STU s[], int n); in ...
分类:
其他好文 时间:
2019-12-22 20:22:29
阅读次数:
96
一、面向对象:封装 1、面向对象最基本的操作: 1、 如何创建对象:通过class对象,创建类名 2、如何设置属性以及属性的作用:属性是对象内的参数,我们可以动态设置参数变量。 3、如何设置对象中的方法:对象中的方法,就是给别人调用使用的。方法有返回值和方法没有返回值的区别。通过关键字,void和其 ...
分类:
其他好文 时间:
2019-12-22 18:42:39
阅读次数:
91