C++ 中的简单算术运算符示例程序


C++ 有 5 个基础算术运算符。它们为 -

  • 加法(+)
  • 减法(-)
  • 除法(/)
  • 乘法(*)
  • 模数(%)

这些运算符可以对 C++ 中的任何算术运算进行运算。我们来看一个示例 -

示例

#include <iostream>
using namespace std;
main() {
   int a = 21;
   int b = 10;
   int c ;
   c = a + b;
   cout << "Line 1 - Value of c is :" << c << endl ;
   
   c = a - b;
   cout << "Line 2 - Value of c is  :" << c << endl ;
   
   c = a * b;
   cout << "Line 3 - Value of c is :" << c << endl ;
   
   c = a / b;
   cout << "Line 4 - Value of c is  :" << c << endl ;
   
   c = a % b;
   cout << "Line 5 - Value of c is  :" << c << endl ;
   return 0;
}

输出

这将给出如下输出 -

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

更新时间:2020 年 2 月 11 日

16K+ 浏览

开启您的 职业生涯

完成课程即可获得认证

开始
广告