上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 28 下一页
摘要: 1 #include 2 #include 3 void main() 4 { 5 for (int i = 0; i<10; i ++ ) 6 printf("%d\n", rand()%100); 7 } 阅读全文
posted @ 2019-10-05 22:33 insist钢 阅读(673) 评论(0) 推荐(0) 编辑
摘要: 细分:1.位置参数:1.1位置形参:在定义阶段,按照从左到右的顺序依次定义的形参称为位置形参特点:但凡是按照位置定义的形参必须被传值 多一个不行少一个也不行def func(x,y,z) print(x,y,z)func(1,2)func(1,2,3)func(1,2,3,4) 1.2位置实参:在调 阅读全文
posted @ 2019-10-05 12:44 insist钢 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 函数的使用原则函数的使用应该分为两个明确的阶段1.定义阶段:(定义一个函数)不会执行函数体代码 会检测语法def func(): print('from func') 2,调用阶段:会触发函数体代码的执行func() 先定义后调用:def bar(): print('from bar')def fo 阅读全文
posted @ 2019-10-04 23:58 insist钢 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1 # include <stdio.h> 2 # include <stdlib.h> 3 4 # define NUM 10 5 6 int main() 7 { 8 char *str[NUM]; /* 定义一个字符性的指针数组 */ 9 int t; 10 11 /* 为数组中的每个指针分配内存 */ 12 for (t = 0; t<NUM; t++) 13 { 14 if ((str[ 阅读全文
posted @ 2019-10-04 22:21 insist钢 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 1.什么是函数 具备某一功能的工具->函数 事先准备工具的过程-->函数的定义 遇到应用场景,拿来就用 >函数的调用 函数分为两大类: 1.内置函数: 2.自定义函数 2.为什么要用函数 1.代码冗余 2.代码可读性差 3.可扩展性差 3.如何使用函数 原则:必须先定义,再调用 定义函数的语法: d 阅读全文
posted @ 2019-10-03 23:29 insist钢 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1 # include 2 3 int main() 4 { 5 unsigned number; 6 double item = 1.23456; 7 8 for (number = 8; number<16; number++) 9 { 10 printf("%o ", number); /* 以八进制格式输出nu... 阅读全文
posted @ 2019-10-03 23:08 insist钢 阅读(544) 评论(0) 推荐(0) 编辑
摘要: 1 # include 2 3 /* 定义一个全局的结构体 */ 4 struct student 5 { 6 long num; 7 char name[20]; 8 char sex; 9 int age; 10 }; 11 12 /* 声明结构体数组并赋初值 */ 13 struct student stu[4] = {{97032,... 阅读全文
posted @ 2019-10-02 14:15 insist钢 阅读(1555) 评论(0) 推荐(1) 编辑
摘要: 文件内指针移动是以字节位单位的,唯独t模式下的read读取的内容个数是以字符为单位的f.read(3)rt读 指针指向开头 读取汉字with open(r'.txt',mode='rt',encoding='utf-8') as f: res=f.read(3)#从头开始读读三个字符 print(r 阅读全文
posted @ 2019-10-02 13:37 insist钢 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 1 /* 输入学生成绩并显示 */ 2 # include 3 4 struct student 5 { 6 char number[6]; 7 char name[6]; 8 int score[3]; 9 } stu[2]; 10 11 void output(struct student stu[2]); 12 13 void main(... 阅读全文
posted @ 2019-10-01 22:38 insist钢 阅读(1101) 评论(0) 推荐(0) 编辑
摘要: 1.字符编码 字符与数字的对应关系表 ASCII:能识别英文字符,1Byte=1英文字符 hello 8bit|8bit|8bit|8bit|8bit GBK:汉字与英文字符,2Byte=1中文字符 1Byte=1英文字符 你a好 8bit|8bit|8bit|8bit|8bit 你 1111 11 阅读全文
posted @ 2019-10-01 20:48 insist钢 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 28 下一页