当前课程知识点:C Programming > Chapter 3 Programming in C > 3.4 Conditions, commas, addresses, byte operators, and mixed operations among various numerical data > 3.4 Conditions, commas, addresses, byte operators, and mixed operations among various numerical data
大家好
欢迎走进C语言程序设计课堂
今天我们讲解的是条件
逗号
取地址
求字节运算符
与各类数值型数据间的混合运算
首先我们介绍一下条件运算符
条件运算符 ? :
是C语言中
唯一的三位运算符
用于连接3个运算对象
用条件运算符
将运算对象
连接成的式子
称为条件表达式
其中
运算对象可以是任何合法的
算术
关系
逻辑
赋值
或条件等
各种类型的表达式
条件表达式格式
如下
表达式1
?
表达式2
:
表达式3
条件运算符表达式的执行方式是
先计算表达式1
若表达式1为非零值
则执行表达式2
并将表达式2的值
作为整个条件表达式的值
不进行表达式3的计算
若表达式1为零
则执行表达式3
并将表达式3的值
作为整个条件表达式的值
不进行表达式2的计算
条件表达式
可以与简单if语句
进行转换
例如
if(a>b) c=a
else c=b;
可以用以下条件表达式替换
c=a>b?a:b;
条件运算符优先级高于赋值
逗号运算符
低于其他运算符
例如
一
m :a+3 等价于 (m ?(x) :(a+3) 二 a++>=10 && b-->20 ? a :b 因为算术 逻辑运算符优先级 均高于条件运算符 故等价于 (a++>=10 && b-->20) ? a :b 三 x=3+a>5 ? 100 :200 因为赋值运算符 优先级低于条件运算符 故等价于 x= (( 3+a>5 ) ? 100 :200 ) 条件运算符具有右结合性 当一个表达式中 出现多个条件运算符时 应该将位于最右边的问号 与离它最近的冒号配对 并按这一原则 正确区分各条件运算符的运算对象 例如 图中的第一行这个表达式 和第二行的表达式等价 与第三行的表达式不等价 下面介绍逗号运算符 逗号运算符“,” 是C语言中的一种特殊的运算符 用于将表达式连接起来 例如 a=2,a+=3,a*a 逗号表达式 是将各种类型的表达式连接成的式子 逗号表达式格式 表达式1 , 表达式2 ,表达式3 等等等等 表达式n 逗号表达式也称为顺序求值表达式 整个逗号表达式的值 等于表达式n 即最后一个表达式的值 计算方法 是从左向右 依次计算其中的表达式 例如 ⑴ a=5, a++, a*3 则 表达式值为 18 且a=6 ⑵ t=1 ,t+5 , t++ 表达式值为 1 且t=2 ⑶ x=(a=3*5, a*4 ) 赋值表达式的值为60 且x=60 a=15 并不是所有出现逗号的地方 都是逗号表达式 例如 在定义变量时 变量之间的逗号 函数参数表中的逗号都只作为一种分隔符 注意 逗号运算符的优先级 是所有运算符中最低的 下面介绍取地址运算符 & &为单目运算符 运算对象只能是变量 运算结果 是变量的存储地址 例如 有定义 int a , student; char ch; 可以对变量a ch student 进行取地址运算 &a &ch &student 取地址运算符 在指针那一章还会深入学习 下面介绍长度运算符 sizeof sizeof为单目运算符 运算对象只能是变量名 或数据类型标识符 运算结果 为该变量或该数据类型的长度 例如 在32位系统 如VC++中 sizeof(int)的值为4 sizeof(float)的值为4 若有定义double x 则sizeof(x)的值 和sizeof(double)的值均为8 在32位系统 如VC++ codeblocks中 运行以下源程序 { int a=5 double x 输出sizeof(int) sizeof(a)) 以及sizeof(double) sizeof(x))的值 sizeof(float) sizeof(char));} 输出结果为 4 4 8 8 4 1 下面介绍各类 数值型数据间的混合运算 C语言表达式中 整型数据 实型数据 和字符型数据可以混合运算 例如 20+’a’乘以2-34.6 当运算对象是不同类型的数据时 系统自动将操作数 转换成相同类型后 再计算表达式的值 如果这种方法 不能满足需求 也可以使用类型转换运算符 对操作数的类型进行强制转换 一 数据类型隐式转换 类型的隐式转换 是指同一运算符两侧 不同数据类型之间的自动转换 它们总是向 “高”级类型转换 运算结果的数据类型 与较高级的数据类型相同 如图所示 转换的原则是 自动将精度低 表示范围小的运算对象类型 向精度高 表示范围大的 运算对象类型转换 以便得到较高精度的运算结果 其中 float自动转换成double型 char和short 自动转换成int型 注意 当两个整数相除时 得到的结果也为整数 将小数部分直接截去 例如 1除以2乘3的结果为0 1.0除以2乘3的结果为1.5 例如 20+’a’乘以2-34.6 ’a’是char类型则自动转换为int 34.6是double型 所以计算结果是 double类型的数值 同学们来看下面这个程序 从运行结果可以看出 a+c类型为int a+c+2.5为double a+c+2.5+m为double 二 赋值运算中的类型转换 当赋值运算符两边的运算对象 数据类型不一致时 系统会自动将赋值号右边表达式的值 转换成左边的变量类型之后再赋值 一 实型变量赋值整型表达式 小数部分自动补0 float x=123 x的值为123.0 二 整型变量赋值 实型表达式 自动舍去实型表达式的小数部分 注意不进行四舍五入 int a=32.6 a的值为32 三 字符变量赋值整型表达式 四 整型变量赋值长整型表达式 自动截取表达式值的低字节赋值 舍去高字节 五 整型变量赋值字符数据 六 长整型变量赋值整型表达式 自动给高字节补0 或补1 三 数据类型的强制转换 如果隐式转换 不能满足使用要求时 可以在表达式中 通过强制类型转换运算符 对操作对象进行类型的强制转换 强制转换的格式 (类型名)表达式 功能 求表达式的值 并将该值 转换成 类型名所指定的数据类型 例如 变量a为float类型 b为int类型 则 int a除以5的余数 将a的值转换为int型 再做求余运算 1除以(float)b+4 将b的值转换成float型 则 1除以(float)b 为float型 再做其他运算 好了 同学们 条件 逗号 取地址 求字节运算符 与各类数值型数据间的混合运算 我们就学习到这儿 下节课再见
-1.1 The development and characteristics of C language
--1.The development and characteristics of C language .mp4
--1.1 Self test questions
-1.2 A simple C Language program
--1.2 A simple C Language program.mp4
--【Source program】 Example 1.1 output a line of text Hello, world! "
--【Source program】 Example 1.2 program composed of multiple functions, find the larger of two integers
--1.2 Self test questions
-1.3 Program, Programming Language and C Program Running Steps
--1.3 Program, Programming Language and C Program Running Steps.mp4
--Running steps of C source program in CodeBlocks
--1.3 Self test questions
-chapter 1 Self-Test
-2.1 The Concept and Description of Algorithms
--2.1 The Concept and Description of Algorithms.mp4
--2.1 Self test questions
-2.2 Examples of Simple Algorithms, Computational Thinking and Structured Programming
--2.2 Examples of Simple Algorithms, Computational Thinking and Structured Programming.mp4
--2.2 Self test questions
-Chapter 2 Self test questions
-3.1 Simple Structure and Identifier of C Language Program
--3.1 Simple Structure and Identifier of C Language Program.mp4
--【Source program】 Example 3.1 input two integers and output the sum of two numbers.
--【Source program】 Example 3.2 input two integers and output the average value.
--【Source program】 Example 3.3 output the value of the character variable.
--3.1 Self test questions
-3.2 Constants, Variables and Assignments
--3.2 Constants, Variables and Assignments.mp4
--3.2 Self test questions
-3.3 Arithmetic, assignment, increment and decrement operators
--3.3 Arithmetic, assignment, increment and decrement operators.mp4
--3.3 Self test questions
-3.4 Conditions, commas, addresses, byte operators, and mixed operations among various numerical data
--3.4 Conditions, commas, addresses, byte operators, and mixed operations among various numerical data
--【Source program】 example of sizeof
--3.4 Self test questions
-3.5 Input and Output Examples and Character Input and Output
--3.5 Input and Output Examples and Character Input and Output.mp4
--【Source program】 Example. Find the root of quadratic equation of one variable.
--【Source program】 Example 1. Successively output three characters of BOY.
--【Source program】Example 2. Input 3 characters of BOY from the keyboard and output them to the screen
--3.5 Self test questions
-3.6 Formatted output printf function
--3.6 Formatted output printf function.mp4
--【Source program】 Example 3.4 output of integer data.
--【Source program】 Example 3.5 real data output.
--【Source program】 Example 3.6 character data output.
--【Source program】 Example 3.7 uses %s to output a string.
--3.6 Self test questions
-3.7 Formatted input scanf function
--3.7 Formatted input scanf function.mp4
--【Source program】 Example 3.8 Input and output integer data
--【Source program】Example 3.9 Input and output single precision and double precision real data.
--【Source program】Example 3.10 input and output character data.
--【Source program】Example 3.11 input and output string.
--3.7 Self test questions
-3.8 Basic Data Types of C Language
--3.8 Basic Data Types of C Language.mp4
--3.8 Self test questions
-Chapter 3 Self test questions
-Operator and expression self test questions
-4.1 Relational operators, logical operators, and if statements
--4.1 Relational operators, logical operators, and if statements.mp4
--【source example】Example 4.1 Find the root of the quadratic equation of one variable.
--【Source program】Example 4.2 Input two real numbers and output them from small to large.
--4.1 Self test questions
-4.2 Switch Statement
--【Source program】Example 4.3 uses switch statement to implement simple menu program
--【Source program】Example 4.4 converts centesimal score into the corresponding grade system score.
--4.2 Self test questions
-4.3 Examples of Selection Structural Programs
--4.3 Examples of Selection Structural Programs.mp4
--【Source program】 Example 4.5 determines whether a year is a leap year.
--【Source program】 Example 4.6 find the solution of quadratic equation of one variable.
--【Source program】Example 4.7 calculate the transportation cost for the user.
--4.3 Self test questions
-Chapter 4 Self test questions
-5.1 While and Do-While Statement
--5.1 While and Do…while statement.mp4
--【Source program】example 5.1 Use while statement to find 1 + 2 + 3 + +100
--【Source program】example 5.2 using do while statement to find 1 + 2 + 3 + +100
--5.1 Self test questions
-5.2 For Statement
--【Source program】example 5.3 Use for loop to find 1 + 2 + 3 +100
--5.2 Self test questions
-5.3 Change the State of Loop Execution and Nested Loop
--5.3 Change the state of loop execution and nested loop .mp4
--【Source program】example 5.4 collecting charity donations
--【Source program】example 5.5 output a number between 100 and 200 that cannot be divided by 3.
--【Source program】multiplication table
--【Source program】example 5.6 Output the following 4*5 matrix.
--5.3 Self test questions
-5.4 Loop Structure Program example 1
--5.4 Loop structure program example 1.mp4
--5.4 Self test questions
-5.5 Loop Structure Program example 2
--5.5 Loop structure program example 2.mp4
--【Source program】example 5. Output the following figure.
--【Source program】example6. The problem of 100 chickens and 100 coins
--【Source program】example 7. Find the approximate value of PI
--5.5 Self test questions
-Chapter 5 Self test questions
-6.1 Definition, Reference and Initialization of One-Dimensional Arrays
--6.1 Definition, Reference of One-Dimensional Arrays.mp4
--6.1 Self test questions
-6.2 One-Dimensional Array Programming
--6.2 One-Dimensional Array Programming.mp4
--【Source program】example 1. Fibonacci sequence
--【Source program】example 2. Find the maximum value and the minimum value.
--【Source program】example 3 exchanging array elements in reverse order.
--【Source program】example 4. Bubble sorting.
--6.2 Self test questions
-6.3 Definition, Reference and Initialization of Two-Dimensional Arrays
--6.3 Definition, Reference of Two-Dimensional Arrays.mp4
--6.3 Self test questions
-6.4 Two-Dimensional Array Programming
--6.4 Two-Dimensional Array Programming.mp4
--【Source program】example 1. Get the average score of each subject.
--【Source program】Example 2. The elements of row and column of a 2D array are interchanged
--6.4 Self test questions
-6.5 Definition, initialization and input and output of character arrays
--6.5 Definition, initialization and input and output of character arrays .mp4
--【Source program】Example 6.6 Output a known string.
--【Source program】Example 6.7 Output a diamond.
--【Source program】Example 6.10 Sorting of strings.
--6.5 Self test questions
-6.6 String Processing Function
--6.6 String Processing Function.mp4
--6.6 Self test questions
-6.7 Character Array Programming
--6.7 Character Array Programming.mp4
--6.7 Self test questions
-Chapter 6 Self test questions
-7.1 Function Concept and How to Define and Call Functions
--7.1 Function Concept and How to Define and Call Functions.mp4
--7.1 Self test questions
-7.2 Data Transfer in Function Call, Call Procedure and Function Return Value
--7.2 Data Transfer in Function Call, Call Procedure and Function Return Value.mp4
--7.2 Self test questions
-7.3 Declarations of called functions and nested calls to functions
--7.3 Declarations of called functions and nested calls to functions .mp4
--【Source program】Example 7.4 use a function to find the sum of t
--7.3 Self test questions
-7.4 Recursive call to function
--7.4 Recursive call to function.mp4
--【Source program】Example 7.6. How old is the fifth student?
--【Source program】Example 7.7 Use recursion method to find n!
--7.4 Self test questions
-7.5 Array as function parameter (1)
--7.5 Array as function parameter (1).mp4
--【Source program】Example 7.10
--7.5 Self test questions
-7.6 Array as function parameter (2)
--7.6 Array as function parameter (2).mp4
--【Source program】Selection sorting.
--【Source program】Example 7.13 find the maximum of a 3×4 matrix.
--7.6 Self test questions
-7.7 Local and global variables, internal and external functions
--7.7 Local and global variables, internal and external functions.mp4
--【Source program】Example 7.14
--7.7 Self test questions
-7.8 The Survival Period of Variables and the Storage Mode of Local Variables
--7.8 The Survival Period of Variables and the Storage Mode of Local Variables.mp4
--【Source program】Example 7.17
--7.8 Self test questions
-7.9 Storage Categories of Global Variables
--7.9 Storage Categories of Global Variables.mp4
--7.9 Self test questions
-Chapter 7 Self test questions
-8.1 Pointer Concept, Definition and Reference of Pointer Variables
--8.1 Pointer Concept, Definition and Reference of Pointer Variables.mp4
--8.1 Self test questions
-8.2 Pointer variables as function parameters
--8.2 Pointer variables as function parameters.mp4
--【Source program】Example 8.3. Exchange two data with function call.
--8.2 Self test questions
-8.3 Pointer of array element, operation of pointer and reference of array element by pointer
--8.3 Pointer of array element, operation of pointer and reference of array element by pointer.mp4
--【Source program】Point to array elements with pointer variables.
--8.3 Self test questions
-8.4 Using Array Name as Function Parameter
--8.4 Using Array Name as Function Parameter.mp4
--【Source program】Store array elements in reverse order.
--8.4 Self test questions
-8.5 Reference to multidimensional arrays by pointers
--8.5 Reference to multidimensional arrays by pointers.mp4
--【Source program】Pointer variable pointing to one-dimensional array.
--8.5 Self test questions
-8.6 Referencing strings through pointers
--8.6 Referencing strings through pointers.mp4
--【Source program】Reference string by pointer.
--8.6 Self test questions
-8.7 Character pointer as function parameter
--8.7 Character pointer as function parameter.mp4
--【Source program】Character pointer as function parameter.
--8.7 Self test questions
-8.8 Pointer pointing to function
--8.8 Pointer pointing to function.mp4
--【Source program】Pointer variable pointing to the function.
--8.8 Self test questions
-8.9 Functions that return pointer values
--8.9 Functions that return pointer values.mp4
--【Source program】Intercept substring.
--8.9 Self test questions
-8.10 Pointer arrays and multiple pointers
--8.10 Pointer arrays and multiple pointers.mp4
--【Source program】Sorting of strings.
--8.10 Self test questions
-8.11 Dynamic memory allocation and pointer variables pointing to it
--8.11 Dynamic memory allocation and pointer variables pointing to it.mp4
--【Source program】Dynamic memory allocation.
--8.11 Self test questions
-Chapter 8 Self test questions
-9.1 Define and use structural variables
--9.1 Define and use structural variables.mp4
--【Source program】Structure variable
--9.1 Self test questions
-9.2 Using structure arrays
--9.2 Using structure arrays.mp4
--【Source program】Structure array
--9.2 Self test questions
-9.3 Structure pointer
--【Source program】Structure pointer
--9.3 Self test questions
-Chapter 9 Self test questions
-CodeBlocks Baidu online disk download address
-Final Exam
--final exam