欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

C++的运算符你真的了解吗

时间:2022-09-24 10:19:30|栏目:C代码|点击:

前言

运算符的作用:用于执行代码的运算

主要有:

在这里插入图片描述

1 算术运算符

用于处理四则运算

在这里插入图片描述

对于前置递增:将递增运算前置,使变量先加一,再进行表达式运算。

对于后置递增:将递增运算后置,使变量先进行表达式运算,再加一。

#include<iostream>
using namespace std;
int main()
{
	//1.前置递增:先加一,再进行表达式运算
	int a = 10;
	int b = ++a * 10;
	cout << "a = " << a << endl;
	cout << "b = " << b << endl;
	//2.后置递增:先进行表达式运算,再加一
	int c = 10;
	int d = c++ * 10;
	cout << "c = " << c << endl;
	cout << "d = " << d << endl;
	system("pause");
	return 0;
}

2 赋值运算符

在这里插入图片描述

#include<iostream>
using namespace std;
int main1()
{
	//赋值运算符
	int a = 10;
	int b = 2;
	cout << "a = " << a << endl;
	//+=
	a = 10;
	a += b;
	cout << "a = " << a << endl;
	//-=
	a = 10;
	a -= b;
	cout << "a = " << a << endl;
	//*=
	a = 10;
	a *= b;
	cout << "a = " << a << endl;
	// /=
	a = 10;
	a /= b;
	cout << "a = " << a << endl;
	// %=
	a = 10;
	a %= b;
	cout << "a = " << a << endl;
	system("pause");
	return 0;
}

3 比较运算符

在这里插入图片描述

#include<iostream>
using namespace std;
int main()
{
	cout << (4 == 3) << endl;
	cout << (4 != 3) << endl;
	cout << (4 < 3) << endl;
	cout << (4 > 3) << endl;
	cout << (4 >= 3) << endl;
	cout << (4 <= 3) << endl;
	system("pause");
	return 0;
}

4 逻辑运算符

在这里插入图片描述

#include<iostream>using namespace std;int main(){int a = 5;// 逻辑运算符 非cout << !a << endl;cout << !!a << endl;// 逻辑运算符 与int b = 0;int c = 3;cout << (a && b) << endl;cout << (a && c) << endl;//逻辑运算符  或cout << (!a || b) << endl;cout << (a || c) << endl;system("pause");return 0;}#include<iostream>
using namespace std;
int main()
{
	int a = 5;
	// 逻辑运算符 非
	cout << !a << endl;
	cout << !!a << endl;
	// 逻辑运算符 与
	int b = 0;
	int c = 3;
	cout << (a && b) << endl;
	cout << (a && c) << endl;
	//逻辑运算符  或
	cout << (!a || b) << endl;
	cout << (a || c) << endl;
	system("pause");
	return 0;
}

总结

上一篇:C++深入探究类与对象之友元与运算符重载

栏    目:C代码

下一篇:C++实现LeetCode(两个有序数组的中位数)

本文标题:C++的运算符你真的了解吗

本文地址:http://www.codeinn.net/misctech/214522.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有