"calculator with c++" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "calculator with c++" answered properly. Developers are finding an appropriate answer about calculator with c++ related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like calculator with c++. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on calculator with c++. 

how to make a calculator in c++

By peppa pigpeppa pig on Aug 18, 2020
// This is for beginners

#include <iostream>

using namespace std;

void greetings() {
    cout << "welcome to the calculator made in c++ :D\n";
}

void instructions() {
    cout << "Here is the operators you can use + - / *\n";
}

int main()
{
    greetings();
    instructions();
    int num1, num2;
    char op;
    int result;
    char again = 'Y';

    while (again == 'y' || again == 'Y') {



        cout << "\nEnter your first digit: ";
        cin >> num1;

        cout << "\nEnter your operator digit: ";
        cin >> op;

        cout << "\nEnter your second digit: ";
        cin >> num2;

        if (op == '+') {
            result = num1 + num2;
        }
        else if (op == '-') {
            result = num1 - num2;
        }
        else if (op == '*') {
            result = num1 * num2;
        }
        else if (op == '/') {
            result = num1 / num2;
        }
        else {
            cout << "Invalid operator";
        }

        cout << "= " << result;
        cout << "\nDo you want to restart the calculator? (Y or N)";
        cin >> again;
    }

    system("pause>0");

    return 0;
}

Add Comment

0

calculator with c++

By moghaazimoghaazi on Mar 16, 2021
#include <iostream>
using namespace std;

int main()
{
	int choice;

	cout << 1 << endl;
	cout << 2 << endl;
	cout << 3 << endl;
	cout << 4 << endl;

	cout << "Choice A Number: ";
	cin >> choice;

	if (choice >= 1 && choice <= 4)
	{
		int a, b;

		cout << "Enter Num One: ";
		cin >> a;
		cout << "Enter Num Two: ";
		cin >> b;

		if (choice == 1)
			cout << a << "+" << b << "=" << a + b << endl;
		if (choice == 2)
			cout << a << "-" << b << "=" << a - b << endl;
		if (choice == 3)
			cout << a << "*" << b << "=" << a * b << endl;
	}
	else
	{
		cout << "Wrong Choice" << endl;
	}
}

Add Comment

0

how to build a calculator using c++

on Jul 24, 2020
#include <iostream>

using namespace std;

int main()
{
int num1;
int num2;
char op;
  
  cout << "Enter a number:" << endl;
  cin >> num1; //takes input
  
  cout << "Enter another number:" << endl; //prints some prompt
  cin >> num2;
  
  cout << "Enter a operator:" << endl; //prints some prompt
  cin >> op;
  
  if(op == '+')
  {
  cout << "Result = " << num1 + num2 << endl;
  }else if(op == '-'){
  cout << "Result = " << num1 - num2 << endl;
  }else if(op == '*'){
  cout << "Result = " << num1 * num2 << endl;
  }else if(op == '/'){
  cout << "Result = " << num1 / num2 << endl;
  }
  
  
}

Add Comment

-1

All those coders who are working on the C++ based application and are stuck on calculator with c++ can get a collection of related answers to their query. Programmers need to enter their query on calculator with c++ related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about calculator with c++ for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of calculator with c++ while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "calculator with c++". Visit this developer's friendly online web community, CodeProZone, and get your queries like calculator with c++ resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "calculator with c++"

View All C++ queries

C++ queries related to "calculator with c++"

Browse Other Code Languages

CodeProZone