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
#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
1.使用 Collections 工具类中的 sort() 方法 参数不同: void sort(List list) 在自定义类User里面实现Comparable<User>接口,并重写抽象方法compareTo(Student o); void sort(List list, Comparat ...
分类:
编程语言 时间:
2019-12-24 23:48:55
阅读次数:
166
#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
一.基础查询 1.查询全部列 SELECT *FROM 表名; 2.查询特定的列: SELECT id, name FROM student; 3.起别名: SELECT 列名1 AS "列1别名",列名2 AS "列2别名" FROM 表名; 或 SELECT 列名1 "列1别名",列名2 "列2 ...
分类:
数据库 时间:
2019-12-24 19:04:15
阅读次数:
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-24 18:34:44
阅读次数:
61