Okay so heres my code so far:
// Calculator, By Ethan Baumgarn
// Include iostream library
#include <iostream>
// Use the standard namespace
using namespace std;
void main ( )
{
//Declare the variables
float Number_1;
float Number_2;
float Result;
int Which_Calculation;
// Give instructions
cout << "Choose a task. Press 1 to add, 2 to subtract, 3 to multiply, and 4 to divide." << endl;
cin >> Which_Calculation;
// Get Numbers
cout << "Please enter the first number." << endl;
cin >> Number_1;
cout << "Please enter the second number." << endl;
cin >> Number_2;
if (Which_Calculation == 1)
{
// Calculate the result
Result = Number_1 + Number_2;
}
if (Which_Calculation == 2)
{
// Calculate the result
Result = Number_1 - Number_2;
}
if (Which_Calculation == 3)
{
// Calculate the result
Result = Number_1 * Number_2;
}
if (Which_Calculation == 4)
{
// Calculate the result
Result = Number_1 / Number_2;
}
// Print the answer is...
cout << "The answer is..." << endl;
//Print the result
cout << Result << endl;
system ("PAUSE")
}
Now I need some one to add these lines into the code:
- Calculator.cpp has a while ( ) loop in it.
- Calculator.exe asks the user if they want to do another calculation.
- Calculator.exe repeats the program if the user enters 1.
- Calculator.exe quits the program if the user enters 2.
Please combine it all into one code and make sure it runs smoothly, it should ask you to do a calculation and then ask you after your done if you want to do another or quit.
If someone can help me thanks.
while()loop will achieve all of the other requirements. You just need to learn how to code a loop.) – Cody Gray Jan 20 '11 at 6:00