社区
王宇韬的课程社区_NO_1
Python零基础快速入门(案例版)
帖子详情
3.常用函数介绍
王宇韬
2023-01-13 03:16:25
课时名称
课时知识点
3.常用函数介绍
3.常用函数介绍
...全文
191
回复
打赏
收藏
3.常用函数介绍
课时名称课时知识点3.常用函数介绍3.常用函数介绍
复制链接
扫一扫
分享
转发到动态
举报
AI
作业
写回复
配置赞助广告
用AI写文章
回复
切换为时间正序
请发表友善的回复…
发表回复
打赏红包
易用api伴侣(易语言api伴侣助手易)
这是易语言的aip助手 找了好久 还是他最好 现在学习易语言的人已经越来越多了,在学习和使用易语言的过程中总会或多或少的接触API
函数
,不过现存的API资料都是为其它语言服务的,所以在易语言使用API
函数
会有不便。本软件就是专为易语言编写的功能强大的API
函数
辅助工具,使用方便,有中文说明,数据齐全,已经收集有
函数
6570个,数据类型419个,常量32000多个。功能简介: 1. 采用表格显示方式,方便查看。 2.
常用
函数
提供中文说明。 3. 对
函数
进行了分类,自己也可以自由分类。 4. 可批量添加易语言例程。 5. 支持向导运行方式,可快速将
函数
批量插入到易语言。 6. 支持批量复制声明,在易语言4.0以上可直接粘贴到易语言中。 7. 支持新增
函数
、数据类型、常量。 8. 强大方便的查找功能。 9. 支持导入导出。 10. 即时编辑,可修改中文名及说明信息
The C Programming Language 第二版 英文版
The C programming Language 第二版英文版 內容列表 Table of Contents Preface.......................................................... Preface to the first edition..................................... Introduction..................................................... Chapter 1 - A Tutorial Introduction.............................. 1.1 Getting Started................................ 1.2 Variables and Arithmetic Expressions........... 1.3 The for statement.............................. 1.4 Symbolic Constants............................. 1.5 Character Input and Output..................... 1.5.1 File Copying.......................... 1.5.2 Character Counting.................... 1.5.3 Line Counting......................... 1.5.4 Word Counting......................... 1.6 Arrays......................................... 1.7 Functions...................................... 1.8 Arguments - Call by Value...................... 1.9 Character Arrays............................... 1.10 External Variables and Scope.................. Chapter 2 - Types, Operators and Expressions..................... 2.1 Variable Names................................. 2.2 Data Types and Sizes........................... 2.3 Constants...................................... 2.4 Declarations................................... 2.5 Arithmetic Operators........................... 2.6 Relational and Logical Operators............... 2.7 Type Conversions............................... 2.8 Increment and Decrement Operators.............. 2.9 Bitwise Operators.............................. 2.10 Assignment Operators and Expressions.......... 2.11 Conditional Expressions....................... 2.12 Precedence and Order of Evaluation............ Chapter 3 - Control Flow......................................... 3.1 Statements and Blocks.......................... 3.2 If-Else........................................ 3.3 Else-If........................................ 3.4 Switch......................................... 3.5 Loops - While and For.......................... 3.6 Loops - Do-While............................... 3.7 Break and Continue............................. 3.8 Goto and labels................................ Chapter 4 - Functions and Program Structure...................... 4.1 Basics of Functions............................ 4.2 Functions Returning Non-integers............... 4.3 External Variables............................. 4.4 Scope Rules.................................... 4.5 Header Files................................... 4.6 Static Variables................................ 4.7 Register Variables.............................. 4.8 Block Structure................................. 4.9 Initialization.................................. 4.10 Recursion...................................... 4.11 The C Preprocessor............................. 4.11.1 File Inclusion........................ 4.11.2 Macro Substitution.................... 4.11.3 Conditional Inclusion................. Chapter 5 - Pointers and Arrays.................................. 5.1 Pointers and Addresses......................... 5.2 Pointers and Function Arguments................ 5.3 Pointers and Arrays............................ 5.4 Address Arithmetic............................. 5.5 Character Pointers and Functions............... 5.6 Pointer Arrays; Pointers to Pointers........... 5.7 Multi-dimensional Arrays....................... 5.8 Initialization of Pointer Arrays............... 5.9 Pointers vs. Multi-dimensional Arrays.......... 5.10 Command-line Arguments........................ 5.11 Pointers to Functions......................... 5.12 Complicated Declarations...................... Chapter 6 - Structures........................................... 6.1 Basics of Structures........................... 6.2 Structures and Functions....................... 6.3 Arrays of Structures........................... 6.4 Pointers to Structures......................... 6.5 Self-referential Structures.................... 6.6 Table Lookup................................... 6.7 Typedef........................................ 6.8 Unions......................................... 6.9 Bit-fields..................................... Chapter 7 - Input and Output..................................... 7.1 Standard Input and Output....................... 7.2 Formatted Output - printf....................... 7.3 Variable-length Argument Lists.................. 7.4 Formatted Input - Scanf......................... 7.5 File Access..................................... 7.6 Error Handling - Stderr and Exit................ 7.7 Line Input and Output........................... 7.8 Miscellaneous Functions......................... 7.8.1 String Operations...................... 7.8.2 Character Class Testing and Conversion. 7.8.3 Ungetc................................. 7.8.4 Command Execution...................... 7.8.5 Storage Management..................... 7.8.6 Mathematical Functions................. 7.8.7 Random Number generation............... Chapter 8 - The UNIX System Interface............................ 8.1 File Descriptors............................... 8.2 Low Level I/O - Read and Write................. 8.3 Open, Creat, Close, Unlink..................... 8.4 Random Access - Lseek.......................... 8.5 Example - An implementation of Fopen and Getc.. 8.6 Example - Listing Directories.................. 8.7 Example - A Storage Allocator.................. Appendix A - Reference Manual.................................... A.1 Introduction................................... A.2 Lexical Conventions............................ A.2.1 Tokens................................ A.2.2 Comments.............................. A.2.3 Identifiers........................... A.2.4 Keywords.............................. A.2.5 Constants............................. A.2.6 String Literals....................... A.3 Syntax Notation................................ A.4 Meaning of Identifiers......................... A.4.1 Storage Class......................... A.4.2 Basic Types........................... A.4.3 Derived types......................... A.4.4 Type Qualifiers....................... A.5 Objects and Lvalues............................ A.6 Conversions.................................... A.6.1 Integral Promotion.................... A.6.2 Integral Conversions.................. A.6.3 Integer and Floating.................. A.6.4 Floating Types........................ A.6.5 Arithmetic Conversions................ A.6.6 Pointers and Integers................. A.6.7 Void.................................. A.6.8 Pointers to Void...................... A.7 Expressions.................................... A.7.1 Pointer Conversion.................... A.7.2 Primary Expressions................... A.7.3 Postfix Expressions................... A.7.4 Unary Operators....................... A.7.5 Casts................................. A.7.6 Multiplicative Operators.............. A.7.7 Additive Operators.................... A.7.8 Shift Operators....................... A.7.9 Relational Operators.................. A.7.10 Equality Operators................... A.7.11 Bitwise AND Operator................. A.7.12 Bitwise Exclusive OR Operator........ A.7.13 Bitwise Inclusive OR Operator........ A.7.14 Logical AND Operator................. A.7.15 Logical OR Operator.................. A.7.16 Conditional Operator................. A.7.17 Assignment Expressions............... A.7.18 Comma Operator.......................... A.7.19 Constant Expressions.................... A.8 Declarations..................................... A.8.1 Storage Class Specifiers................. A.8.2 Type Specifiers.......................... A.8.3 Structure and Union Declarations......... A.8.4 Enumerations............................. A.8.5 Declarators.............................. A.8.6 Meaning of Declarators................... A.8.7 Initialization........................... A.8.8 Type names............................... A.8.9 Typedef.................................. A.8.10 Type Equivalence........................ A.9 Statements....................................... A.9.1 Labeled Statements....................... A.9.2 Expression Statement..................... A.9.3 Compound Statement....................... A.9.4 Selection Statements..................... A.9.5 Iteration Statements..................... A.9.6 Jump statements.......................... A.10 External Declarations........................... A.10.1 Function Definitions.................... A.10.2 External Declarations................... A.11 Scope and Linkage............................... A.11.1 Lexical Scope........................... A.11.2 Linkage................................. A.12 Preprocessing................................... A.12.1 Trigraph Sequences...................... A.12.2 Line Splicing........................... A.12.3 Macro Definition and Expansion.......... A.12.4 File Inclusion.......................... A.12.5 Conditional Compilation................. A.12.6 Line Control............................ A.12.7 Error Generation........................ A.12.8 Pragmas................................. A.12.9 Null directive.......................... A.12.10 Predefined names....................... A.13 Grammar......................................... Appendix B - Standard Library.................................... B.1.1 File Operations................................ B.1.2 Formatted Output......................... B.1.3 Formatted Input.......................... B.1.4 Character Input and Output Functions..... B.1.5 Direct Input and Output Functions........ B.1.6 File Positioning Functions............... B.1.7 Error Functions.......................... B.2 Character Class Tests: ................. B.3 String Functions: ..................... B.4 Mathematical Functions: ................. B.5 Utility Functions: ....................
得到计算机上Windows目录和系统目录
得到计算机上Windows目录和系统目录
c语言math
常用
的
函数
有哪些,
常用
math.h 中的数学
函数
示例
常用
math.h 中的数学
函数
示例C语言标准库接上篇:C语言 ctype.h 中的字符判断
函数
头文件中声明了各种
常用
的数学
函数
。其所有
函数
都带有一个 double 类型的参数,且返回值的类型均为double。六种基本初等
函数
参见:
常用
函数
的导数和微分1、三角
函数
常用
math.h 中的数学
函数
示例三角
函数
(trigonometric function)的角度都用弧度来表示,
常用
的三角
函数
包括:s...
String.h中比较
常用
的
函数
字符串在我们程序中出现的频率很高,关于字符串的
函数
也是很多的,我们今天来
介绍
string.h头文件中的几个
常用
的
函数
: 1.strlen
函数
名:strlen 功 * 能:求得字符串的长度 说 * 明:strlen(str)为字符串str的长度 实 * 例: #include <stdio.h> #include <string.h> int main() { ...
王宇韬的课程社区_NO_1
2
社区成员
227
社区内容
发帖
与我相关
我的任务
王宇韬的课程社区_NO_1
王宇韬(CFA、FRM、AQF) 华能信托华小智金融科技实验室组长,《Python金融大数据挖掘与分析全流程详解》,《Python大数据分析与机器学习商业案例实战》作者 宾西法尼亚大学硕士,上海交通大学学士。在上海交大就读期间曾经荣获国家奖学金,上海交通大学优秀毕业生,两年内通过CFA(特许金融分析师)3级,FRM(金融风险管理师)2级,AQF(量化金融分析师)。 更多信息:https://shimo.im/docs/cyHrXKHdTkg8xcG6/ 《王宇韬-华能信托金融科技实验室》
复制链接
扫一扫
分享
社区描述
王宇韬(CFA、FRM、AQF) 华能信托华小智金融科技实验室组长,《Python金融大数据挖掘与分析全流程详解》,《Python大数据分析与机器学习商业案例实战》作者 宾西法尼亚大学硕士,上海交通大学学士。在上海交大就读期间曾经荣获国家奖学金,上海交通大学优秀毕业生,两年内通过CFA(特许金融分析师)3级,FRM(金融风险管理师)2级,AQF(量化金融分析师)。 更多信息:https://shimo.im/docs/cyHrXKHdTkg8xcG6/ 《王宇韬-华能信托金融科技实验室》
社区管理员
加入社区
获取链接或二维码
近7日
近30日
至今
加载中
查看更多榜单
社区公告
暂无公告
试试用AI创作助手写篇文章吧
+ 用AI写文章