首页 > 其他分享 >无涯教程-C语言 - 运算符

无涯教程-C语言 - 运算符

时间:2023-10-30 14:33:13浏览次数:35  
标签:无涯 Value C语言 运算符 printf Line true Example

 C语言包含丰富的内置运算符,并提供以下类型的运算符-

  • 算术运算符
  • 关系运算符
  • 逻辑运算符
  • 按位运算符
  • 赋值运算符
  • Misc运算符

算术运算符

下表显示了C语言支持的所有算术运算符。假设变量 A =10,变量 B=20,然后-

运算符 描述 示例
+ 相加 A + B=30
- 相减 A - B=-10
* 相乘 A * B=200
/ 相除 B/A=2
% 取模 B % A=0
++ 递增 A++=11
-- 递减 A--=9

尝试以下示例以了解C中可用的所有算术运算符-

#include <stdio.h>

main() {

   int a = 21;
   int b = 10;
   int c ;

   c = a + b;
   printf("Line 1 - Value of c is %d\n", c );
	
   c = a - b;
   printf("Line 2 - Value of c is %d\n", c );
	
   c = a * b;
   printf("Line 3 - Value of c is %d\n", c );
	
   c = a / b;
   printf("Line 4 - Value of c is %d\n", c );
	
   c = a % b;
   printf("Line 5 - Value of c is %d\n", c );
	
   c = a++; 
   printf("Line 6 - Value of c is %d\n", c );
	
   c = a--; 
   printf("Line 7 - Value of c is %d\n", c );
}

当您编译并执行上述程序时,它将产生以下结果-

Line 1 - Value of c is 31
Line 2 - Value of c is 11
Line 3 - Value of c is 210
Line 4 - Value of c is 2
Line 5 - Value of c is 1
Line 6 - Value of c is 21 
Line 7 - Value of c is 22

关系运算符

下表显示了C支持的所有关系运算符。假设变量 A=10,变量 B=20,则-

运算符 描述 示例
== 判断是否相等 (A == B) is not true.
!= 判断是否不相等 (A != B) is true.
> 大于 (A > B) is not true.
< 小于 (A < B) is true.
>= 大于或等于 (A >= B) is not true.
<= 小于或等于 (A <= B) is true.

尝试以下示例以了解C中可用的所有关系运算符-

#include <stdio.h>

main() {

   int a = 21;
   int b = 10;
   int c ;

   if( a == b ) {
      printf("Line 1 - a is equal to b\n" );
   } else {
      printf("Line 1 - a is not equal to b\n" );
   }
	
   if ( a < b ) {
      printf("Line 2 - a is less than b\n" );
   } else {
      printf("Line 2 - a is not less than b\n" );
   }
	
   if ( a > b ) {
      printf("Line 3 - a is greater than b\n" );
   } else {
      printf("Line 3 - a is not greater than b\n" );
   }
   
   /* 让我们改变 a 和 b 的值 */
   a = 5;
   b = 20;
	
   if ( a <= b ) {
      printf("Line 4 - a is either less than or equal to  b\n" );
   }
	
   if ( b >= a ) {
      printf("Line 5 - b is either greater than  or equal to b\n" );
   }
}

当您编译并执行上述程序时,它将产生以下结果-

Line 1 - a is not equal to b
Line 2 - a is not less than b
Line 3 - a is greater than b
Line 4 - a is either less than or equal to  b
Line 5 - b is either greater than  or equal to b

逻辑运算符

下表显示了C语言支持的所有逻辑运算符。假设变量 A=1,变量 B=0,则-

运算符 描述 示例
&& 逻辑AND,两边都为true,则返回true,否则false (A && B) is false.
|| 逻辑OR,两边只要有一边是true,则返回true (A || B) is true.
! 逻辑否,如果A为true,!A否为false !(A && B) is true.

尝试以下示例以了解C中可用的所有逻辑运算符-

#include <stdio.h>

main() {

   int a = 5;
   int b = 20;
   int c ;

   if ( a && b ) {
      printf("Line 1 - Condition is true\n" );
   }
	
   if ( a || b ) {
      printf("Line 2 - Condition is true\n" );
   }
   
   /* 让我们改变 a 和 b 的值 */
   a = 0;
   b = 10;
	
   if ( a && b ) {
      printf("Line 3 - Condition is true\n" );
   } else {
      printf("Line 3 - Condition is not true\n" );
   }
	
   if ( !(a && b) ) {
      printf("Line 4 - Condition is true\n" );
   }
	
}

当您编译并执行上述程序时,它将产生以下结果-

Line 1 - Condition is true
Line 2 - Condition is true
Line 3 - Condition is not true 
Line 4 - Condition is true

按位运算符

p q p & q p | q p ^ q
0 0 0 0 0
0 1 0 1 1
1 1 1 1 0
1 0 0 1 1

假设A=60和B=13为二进制格式,它们将如下所示-

A=0011 1100

B=0000 1101

-----------------

A&B=0000 1100

A | B=0011 1101

A ^ B=0011 0001

~A=1100 0011

下表列出了C支持的按位运算符。假设变量'A'=60,变量'B'=13,然后-

运算符 描述 示例
& 按位AND运算 (A & B)=12, i.e., 0000 1100
| 按位OR运算 (A | B)=61, i.e., 0011 1101
^ 按位异或运算 (A ^ B)=49, i.e., 0011 0001
~ 按位非运算 (~A )=~(60), i.e,. -0111101
<< 二进制左移运算 A << 2=240 i.e., 1111 0000
>> 二进制右移运算 A >> 2=15 i.e., 0000 1111

尝试以下示例以了解C中可用的所有按位运算符-

#include <stdio.h>

main() {

   unsigned int a = 60;	/* 60=0011 1100 */  
   unsigned int b = 13;	/* 13=0000 1101 */
   int c = 0;           

   c = a & b;       /* 12=0000 1100 */ 
   printf("Line 1 - Value of c is %d\n", c );

   c = a | b;       /* 61=0011 1101 */
   printf("Line 2 - Value of c is %d\n", c );

   c = a ^ b;       /* 49=0011 0001 */
   printf("Line 3 - Value of c is %d\n", c );

   c = ~a;          /*-61=1100 0011 */
   printf("Line 4 - Value of c is %d\n", c );

   c = a << 2;     /* 240=1111 0000 */
   printf("Line 5 - Value of c is %d\n", c );

   c = a >> 2;     /* 15=0000 1111 */
   printf("Line 6 - Value of c is %d\n", c );
}

当您编译并执行上述程序时,它将产生以下结果-

Line 1 - Value of c is 12
Line 2 - Value of c is 61
Line 3 - Value of c is 49
Line 4 - Value of c is -61
Line 5 - Value of c is 240
Line 6 - Value of c is 15

赋值运算符

下表列出了C语言支持的赋值运算符-

运算符 描述 示例
= 赋值运算符 C=A + B will assign the value of A + B to C
+= 先加再赋值。 C += A is equivalent to C=C + A
-= 先减后赋值 C -= A is equivalent to C=C - A
*= 先乘后赋值 C *= A is equivalent to C=C * A
/= 先除后赋值 C /= A is equivalent to C=C/A
%= 取模后赋值 C %= A is equivalent to C=C % A
<<= 左移后赋值 C <<= 2 is same as C=C << 2
>>= 右移后赋值 C >>= 2 is same as C=C >> 2
&= 按位与赋值运算符 C &= 2 is same as C=C & 2
^= 按位非赋值运算符 C ^= 2 is same as C=C ^ 2
|= 按位或(OR)和赋值运算符。 C |= 2 is same as C=C | 2

尝试以下示例以了解C中可用的所有赋值运算符-

#include <stdio.h>

main() {

   int a = 21;
   int c ;

   c =  a;
   printf("Line 1 -= Operator Example, Value of c=%d\n", c );

   c +=  a;
   printf("Line 2 - += Operator Example, Value of c=%d\n", c );

   c -=  a;
   printf("Line 3 - -= Operator Example, Value of c=%d\n", c );

   c *=  a;
   printf("Line 4 - *= Operator Example, Value of c=%d\n", c );

   c /=  a;
   printf("Line 5 - /= Operator Example, Value of c=%d\n", c );

   c  = 200;
   c %=  a;
   printf("Line 6 - %= Operator Example, Value of c=%d\n", c );

   c <<=  2;
   printf("Line 7 - <<= Operator Example, Value of c=%d\n", c );

   c >>=  2;
   printf("Line 8 - >>= Operator Example, Value of c=%d\n", c );

   c &=  2;
   printf("Line 9 - &= Operator Example, Value of c=%d\n", c );

   c ^=  2;
   printf("Line 10 - ^= Operator Example, Value of c=%d\n", c );

   c |=  2;
   printf("Line 11 - |= Operator Example, Value of c=%d\n", c );
}

当您编译并执行上述程序时,它将产生以下结果-

Line 1 -= Operator Example, Value of c=21
Line 2 - += Operator Example, Value of c=42
Line 3 - -= Operator Example, Value of c=21
Line 4 - *= Operator Example, Value of c=441
Line 5 - /= Operator Example, Value of c=21
Line 6 - %= Operator Example, Value of c=11
Line 7 - <<= Operator Example, Value of c=44
Line 8 - >>= Operator Example, Value of c=11
Line 9 - &= Operator Example, Value of c=2
Line 10 - ^= Operator Example, Value of c=0
Line 11 - |= Operator Example, Value of c=2

sizeof和三元运算符

除了上面讨论的运算符,还有一些其他重要的运算符。

Operator 描述 Example
sizeof() 返回变量的大小。 sizeof(a),其中a为整数,将返回4。
& 返回变量的地址。 &a; 返回变量的实际地址。
* 指向变量的指针。 *a;
? : 条件表达式。 If Condition is true ? then value X : otherwise value Y

请尝试以下示例,以了解C中可用的所有其他运算符-

#include <stdio.h>

main() {

   int a = 4;
   short b;
   double c;
   int* ptr;

   /* sizeof 运算符的示例 */
   printf("Line 1 - Size of variable a=%d\n", sizeof(a) );
   printf("Line 2 - Size of variable b=%d\n", sizeof(b) );
   printf("Line 3 - Size of variable c= %d\n", sizeof(c) );

   /* & 和 * 运算符的示例 */
   ptr = &a;	/* “ptr”现在包含“a”的地址 */
   printf("value of a is  %d\n", a);
   printf("*ptr is %d.\n", *ptr);

   /* 三元运算符的例子 */
   a = 10;
   b = (a == 1) ? 20: 30;
   printf( "Value of b is %d\n", b );

   b = (a == 10) ? 20: 30;
   printf( "Value of b is %d\n", b );
}

当您编译并执行上述程序时,它将产生以下结果-

Line 1 - Size of variable a=4
Line 2 - Size of variable b=2
Line 3 - Size of variable c= 8
value of a is  4
*ptr is 4.
Value of b is 30
Value of b is 20

参考链接

https://www.learnfk.com/c-programming/c-operators.html

标签:无涯,Value,C语言,运算符,printf,Line,true,Example
From: https://blog.51cto.com/u_14033984/8088874

相关文章

  • 无涯教程-C语言 - 储存类
    我们在C程序中有四种不同的存储类-autoregisterstaticexternautoauto存储类是所有局部变量的默认存储类。{intmount;autointmonth;}上面的示例在同一存储类中定义了两个变量,"auto"只能在函数(即局部变量)中使用。register寄存器存储类用于定义应存储在......
  • 无涯教程-C语言 - 常量类型
    常数是指程序在执行过程中不得更改的固定值,常量与常规变量的处理方式相同,只不过其值在定义后无法修改。整数整数可以是十进制,八进制或十六进制常量。前缀指定基数或基数:十六进制为0x或0X,八进制为0。212/*有效*/215u/*有效*/0xFeeL/*有效*/078......
  • 用C语言,查找和判断年份是否为闰年
    今天我们来探讨一下用C程序代码来判断一个年份是否为闰年,或者题目给定一个年份区间,来查询里面有那些年份属于闰年:闰年的判断条件:1.能被4整除,但不能被100整除2.能被400整除运行结果如下:代码如下:#include<stdio.h>//打印1000到2000之间的闰年//闰年的判断条件:1.能被4整除,但不能被10......
  • 7-4 分寝室(c语言)
    目录目录目录题目第一次错误代码第二次错误代码最终结果题目学校新建了宿舍楼,共有n间寝室。等待分配的学生中,有女生n0位、男生n1位。所有待分配的学生都必须分到一间寝室。所有的寝室都要分出去,最后不能有寝室留空。现请你写程序完成寝室的自动分配。分配规则如下:男女......
  • 无涯教程-Clojure - Desktop – Displaying Labels函数
    可以在标签类的帮助下显示标签。以下程序显示了有关如何使用它的示例。(nsweb.core(:gen-class)(:require[seesaw.core:asseesaw]))(defn-main[&args](defndisplay[content](let[window(seesaw/frame:title"Example")](->win......
  • 无涯教程-C语言 - 程序结构
    在研究C编程语言的基本构建块之前,让我们看一下C程序结构,以便在以后的章节中将其作为参考。示例代码让我们看一个简单的代码,该代码将打印"HelloLearnfk"一词-#include<stdio.h>intmain(){/*我是注释*/printf("Hello,Learnfk!\n");return0;}让我们......
  • B站C语言第五-六课——分支与循环语句
    1,分支语句#include<stdio.h>intmain(){ intage=100; if(age<18) printf("未成年\n"); elseif(age>=18&&age<28) printf("青年\n"); elseif(age>=28&&age<50) printf("壮年\n"); else......
  • 无涯教程-C语言 - 简介
    C是一种通用的编程语言,广泛用于系统软件与应用软件的开发。于1969年至1973年间,为了移植与开发UNIX操作系统,由丹尼斯·里奇与肯·汤普逊,以B语言为基础,在贝尔实验室设计、开发出来。C语言具有高效、灵活、功能丰富、表达力强和较高的可移植性等特点,在程序设计中备受青睐,成为最近25......
  • EDA工具使用+GIT操作+python编程+C语言编程+Riscv相关+TCL操作
    EDA工具使用Verdi覆盖率转网页urg-full64-dirsimv.vdbVerdi加载sessionverdi-ssrsessionFileVcs分部编译额外选项-partcomp:自动分块编译。-fastpartcomp:使用多核计算系统并行部分编译。-pcmakeprof:查看每部分编译占用的时间,方便对时间更久的进行拆分。-partc......
  • 无涯教程-Clojure - Desktop – See-saw函数
    跷跷板是一个可用于创建桌面应用程序的库。为了使用跷跷板,请首先从以下github链接下载.clj文件:https://github.com/daveray/seesaw然后创建一个示例桌面应用程序。以下是相同的代码。(nsweb.core(:gen-class)(:require[seesaw.core:asseesaw]))(defwindow(see......