上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 35 下一页
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //typedef为数据类型搞一个别名,规范这个别名通常会用大写 typedef char * STRING; //用define来 阅读全文
posted @ 2021-07-28 18:27 学而不思则罔! 阅读(44) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //定义一个枚举类型(默认从0开始) enum ctype1 { one = 6, two, three, four, five} 阅读全文
posted @ 2021-07-28 16:19 学而不思则罔! 阅读(42) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //定义结构 struct Person{ char id; int name [4]; double score; }; //定义 阅读全文
posted @ 2021-07-28 14:18 学而不思则罔! 阅读(189) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //定义一个带有匿名结构成员的结构 struct Person{ char id; int name [4]; struct {ch 阅读全文
posted @ 2021-07-27 19:26 学而不思则罔! 阅读(67) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //定义一个结构- 把struct Person当做一种数据类型 struct Person{ char id; int name 阅读全文
posted @ 2021-07-27 19:04 学而不思则罔! 阅读(68) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <string.h> //定义一个结构- 把struct Person当做一种数据类型 struct Person{ int id; char name 阅读全文
posted @ 2021-07-27 17:17 学而不思则罔! 阅读(74) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <unistd.h> //定义一个结构- 把struct Person当做一种数据类型 struct Person{ char *name; int ag 阅读全文
posted @ 2021-07-26 14:19 学而不思则罔! 阅读(50) 评论(0) 推荐(0)
摘要: #include <stdio.h> //fopen函数的包 #include <stdlib.h> //exit()函数的包 #include <unistd.h> //定义一个结构- 把struct Person当做一种数据类型 struct Person{ char *name; int ag 阅读全文
posted @ 2021-07-26 08:33 学而不思则罔! 阅读(80) 评论(0) 推荐(0)
摘要: #!/bin/bash #定义数组1 arr1=('gao' 1 b c) arr2[0]=10 arr2[1]=9 arr3[3]="gaocun" #读取元素 echo ${arr1[0]} echo ${arr2[1]} #读取元素所有的值 echo ${arr1[*]} echo ${arr 阅读全文
posted @ 2021-07-19 11:03 学而不思则罔! 阅读(19) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> #include <unistd.h> //1.静态数组 int i_arr1[3] = {1, 2, 3}; int size = 3; int main() { //创建数组的三种方法 /*1.静态数组 特点:1.用常 阅读全文
posted @ 2021-07-12 20:02 学而不思则罔! 阅读(199) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 35 下一页