计算器是当今广泛使用的设备。它使计算更容易,更快捷。计算器在日常生活中已为每个人所用。可以使用C++程序制作一个简单的计算器,该程序能够对用户输入的两个操作数进行加,减,乘和除运算。 switch和break语句用于创建计算器。
程序:
// C++ program to create calculator using
// switch statement
#include
using namespace std;
// Main program
main()
{
char op;
float num1, num2;
// It allows user to enter operator i.e. +, -, *, /
cin >> op;
// It allow user to enter the operands
cin >> num1 >> num2;
// Switch statement begins
switch (op) {
// If user enter +
case '+':
cout << num1 + num2;
break;
// If user enter -
case '-':
cout << num1 - num2;
break;
// If user enter *
case '*':
cout << num1 * num2;
break;
// If user enter /
case '/':
cout << num1 / num2;
break;
// If the operator is other than +, -, * or /,
// error message will display
default:
cout << "Error! operator is not correct";
break;
} // switch statement ends
return 0;
}
输出:
- 单击运行ide按钮,将打开另一个选项卡,其中包含网址
“ https://ide.geeksforgeeks.org/index。 PHP” - 将输入内容放入输入框中
- 输入算术运算运算符(即+,-,*或/),然后输入需要在其上执行计算的两个操作数
- 点击运行按钮
- 然后输出框将出现并显示输出
想要从精选的最佳视频中学习和练习问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。