file input and output Posted on 2020-11-03 Edited on 2025-05-12 对文件的输入输出文件 程序文件。包括源程序文件,这种文件的内容是程序代码 数据文件。供程序运行时读写的数据 Read more »
users create data types themselves Posted on 2020-10-25 Edited on 2025-05-12 用户自己建立数据类型定义和使用结构体变量由不同类型数据组成的组合型的数据结构,它称为结构体. Read more »
Good use of pointers Posted on 2020-10-25 Edited on 2025-05-12 善于利用指针 Good use of pointers 指针 Read more »
realize modular programming with functions Posted on 2020-10-25 Edited on 2025-05-12 用函数实现模块化程序设计 Realize modular programming with functions 用函数输出以下结果: Read more »
use-arrays-to-process-batch-data Posted on 2020-10-25 Edited on 2025-05-12 利用数组处理批量数据 use-arrays-to-process-batch-data 1.数组使一组有序数据的集合. Read more »
cycle structure programming Posted on 2020-10-25 Edited on 2025-05-12 循环结构体程序设计用while语句实现循环 while (表达式) 语句 Read more »
select structure programming Posted on 2020-10-25 Edited on 2025-05-12 选择结构程序设计选择结构和条件判断用if语句实现选择结构 Read more »
sequential programming Posted on 2020-10-25 Edited on 2025-05-12 顺序程序设计求摄氏度 12345678910#include<stdio.h>int main(){ float f, c; f = 64.0; c = (5.0 / 9) * (f - 32); printf("f=%f\nc=%f\n", f, c); return 0;} Read more »
C algorithm Posted on 2020-10-25 Edited on 2025-05-12 算法1.什么是算法?算法(Algorithm)是指解题方案的准确而完整的描述,是一系列解决问题的清晰指令,算法代表着用系统的方法描述解决问题的策略机制。也就是说,能够对一定规范的输入,在有限时间内获得所要求的输出。 Read more »