"how to make a calculator inc++" 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 "how to make a calculator inc++" answered properly. Developers are finding an appropriate answer about how to make a calculator inc++ related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like how to make a calculator inc++. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on how to make a calculator inc++. 

how to make a calculator inc++

By breezebreeze on Aug 30, 2020
// ONLY 29 LINES OF CODE IN TOTAL
// For better calculator scroll down on this post
#include <iostream>
using namespace std;
int main() {
	cout << "Please enter the first number: ";
	double n1 = 0;
	cin >> n1;
	cout << "Please enter an operator (+, -, *, /): ";
	char op = '0';
	cin >> op;
	cout << "Please enter a second number: ";
	double n2 = 0;
	cin >> n2;
	double answer = 0;
	switch (op) {
	case '+': 
		answer = n1 + n2;
		break;
	case '-':
		answer = n1 - n2;
		break;
	case '*': 
		answer = n1 * n2;
		break;
	case '/': 
		answer = n1 / n2;
		break;
	}
	cout << "Thanks for using my calculator your answer is: " << answer;
  
  // this is the better calculator:
  
  #include <iostream>
#include <Windows.h>
using namespace std;
int main() {
	char jim = 'j';
	do {
		
		cout << "Please enter the first number: ";
		double n1 = 0;
		cin >> n1;
		cout << "Please enter an operator (+, -, *, /): ";
		char op = '0';
		cin >> op;
		cout << "Please enter a second number: ";
		double n2 = 0;
		cin >> n2;
		double answer = 0;
		switch (op) {
		case '+':
			answer = n1 + n2;
			break;
		case '-':
			answer = n1 - n2;
			break;
		case '*':
			answer = n1 * n2;
			break;
		case '/':
			answer = n1 / n2;
			break;
		}
		cout << "Thanks for using my calculator your answer is: " << answer << " do you want to run the program again? (y or n) ";
		cin >> jim;

	} while (jim = 'y' && jim != 'n');
	if (jim = 'n') {
		cout << "Thanks for using my calculator here is sum epic music";
		Beep(329, 300);
		Beep(493, 300);
		Beep(698, 300);
		Beep(659, 600);

		Beep(783, 300);
		Beep(698, 300);
		Beep(659, 600);

		Beep(329, 100);
		Beep(493, 300);
		Beep(698, 300);
		Beep(659, 600);

		Beep(392, 250);
		Beep(440, 200);
		Beep(587, 300);

		Beep(349, 250);
		Beep(587, 500);

		Beep(329, 300);
		Beep(493, 300);
		Beep(698, 300);
		Beep(659, 600);

		Beep(783, 300);
		Beep(698, 300);
		Beep(659, 600);

		Beep(329, 100);
		Beep(493, 300);
		Beep(698, 300);
		Beep(659, 600);

		Beep(392, 250);
		Beep(440, 200);
		Beep(587, 300);

		Beep(349, 250);
		Beep(587, 400);
	}
	return 0;
}

Add Comment

2

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

C++ answers related to "how to make a calculator inc++"

View All C++ queries

C++ queries related to "how to make a calculator inc++"

how to make a calculator inc++ can you use rand to read in from an external file inc++ how to use getline function inc cuda atomic inc how to make a calculator in c++ how to make a adittion calculator in c++ c++ calculator program using switch case c++ calculator script calculator with c++ c++ calculator primtiive calculator in c++ how to build a calculator using c++ run time calculator c++ how to make sure the user inputs a int and not anything else c++ how to make a Loop in c++ c++ how to make a negative float positive make cin cout faster how to make crypto how can make string value in cpp c++ make shared_ptr how to make string get spaces c++ how to make a random number in c++ how to make a list in c++ how to make a switch case statement in c++ how to make an array c++ how to make a selection sort C++ How to make a function in C++ how to make a n*n 2d dynamic array in c++ how to make a vector in c++ how to make a login c++ make random nuber between two number in c++ how to make a 2d vector in c++ how to make a typing effect c++ make a token how to make for loop in c++ how to make a array in c++ qt make widget ignore mouse events how to make rng in c++ make pair in c++ cpp make class abstract how to make a function in cpp how to make graphs in c++ c++ modulo make it give only positive numbers make pair map c++ make vector loop more faster how to make movement in c++ unreal how to make an enum in c++ hwo to make a script to give track battery and give notification how to make a comment in c++ c++ how to make function as argument how to make a while Loop in c++ how to make custom domain extension how to make a c++ iostream program restart when finished make an x using asterisk c++ how to make 2d vector

Browse Other Code Languages

CodeProZone