Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Are you literally saying that we must do your work and give it to you. Also you want it to be "running smoothly" – ckv Jan 20 '11 at 6:00
5  
So, what's the question? Will anyone do my homework for me? I suspect the answer is no. (But here's a hint for free: implementing the 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
@Ethan Baumgam: Please make an actual effort at solving the problem before just asking for someone to do the whole thing. – Zach L Jan 20 '11 at 6:02
1  
At this point, you need to get a good introductory book. – James McNellis Jan 20 '11 at 6:31
1  
@Ethan Baumgarn: Just take your time and keep at it. No one mastered programming in one day. – Zach L Jan 20 '11 at 6:35
show 15 more comments

closed as not a real question by Naveen, Cody Gray, James McNellis, Josh Lee, ybungalobill Jan 20 '11 at 8:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

There's not much of a "challenge" to the project if someone else writes the code for you, so I won't. :-)

But as I suggested in a comment, implementing a while() loop should be your first plan of action. The rest of the needed functionality will fall into place once you have that. Here's an excellent introduction to while loops in C++, complete with an example:

#include <iostream.h>

int main(void) {
      int x = 0;
      int y = 0;
      bool validNumber = false;

      while (validNumber == false) {
            cout << "Please enter an integer between 1 and 10: ";
            cin >> x;
            cout << "You entered: " << x << endl << endl;

            if ((x < 1) || (x > 10)) {
                  cout << "Your value for x is not between 1 and 10!"
                   << endl;
                  cout << "Please re-enter the number!" << endl << endl;
            }
            else
                  validNumber = true;          
      }

      cout << "Thank you for entering a valid number!" << endl;

      return 0;
}

It should be trivial to take what you see there and apply it to your own existing code.

share|improve this answer
@Ethan: What part confuses you? Essentially, you add a variable declaration (validNumber) and a wrap your code in a while loop. Each time the loop runs, it tests the value of the validNumber variable to see if it should continue. Since the variable starts off as false, the loop will run the first time, and continue to loop after that, until you set the value of validNumber to true from inside the loop. Then, the next time the while statement is executed at the top of the loop, validNumber != false, so the loop doesn't run. – Cody Gray Jan 20 '11 at 6:20
Im not going to get it no matter how hard I look at it. all i got is – Ethan Baumgarn Jan 20 '11 at 6:21
<<"Continue? (Press 1 for yes, 2 for no)"; cin>>answer; } while (answer == 1); – Ethan Baumgarn Jan 20 '11 at 6:21
2  
@Ethan: Most importantly, calm down. If what you're trying is really beginning to frustrate you, take a step back from it and do something else. Programming can be a lot of fun, but it can also be infuriating at times. Those are times you should take a break and come back with fresh eyes. :-) – Cody Gray Jan 20 '11 at 6:22
1  
No error checking on cin >> x, the use of <iostream.h>, and the unqualified references to names from std without a using directive make me :'( – James McNellis Jan 20 '11 at 6:26
show 8 more comments

I don't want to be mean, but this code has nothing to do with C++. If you want to write a calculator in C++, you would have to code the operator and the variables as objects.

I honestly would suggest the book:

The C++ Programming Language (Third Edition and Special Edition) Addison-Wesley, ISBN 0-201-88954-4 and 0-201-70073-5.

Writing an entire program for somebody else does not make any sense, you need to understand what programming is about.

share|improve this answer
+1 for TC++PL ! – ybungalobill Jan 20 '11 at 6:17
A good book, but not necessarily the one I'd recommend for a beginner. See this list for some more suggestions. And I think what you're insinuating is that C++ is an object-oriented language, while what's actually shown is a strictly procedural program. It would be much more helpful if your answer explained what you mean by "code the operator and the variables as objects", rather than just saying it to demonstrate how much you know about OOP. – Cody Gray Jan 20 '11 at 6:18
@Ethan Baumgarn - this is a community for solving problems, not for writing a crappy program for someone who is too lazy to do it himself. You have been given a lot of good advice, especially from Cody Gray, how to solve your problem. Furthermore there were references to a while loop. – tessus Jan 20 '11 at 6:27
<<"Continue? (Press 1 for yes, 2 for no)"; cin>>answer; } while (answer == 1); – Ethan Baumgarn Jan 20 '11 at 6:29
^ Thats as far as I got with it so Im stuck with a problem now arent I? – Ethan Baumgarn Jan 20 '11 at 6:30
show 5 more comments

Here's how I wrote mine in C#: http://www.blackbeltcoder.com/Articles/algorithms/a-c-expression-evaluator

share|improve this answer
Way to complicated – Ethan Baumgarn Jan 20 '11 at 6:20
1  
this is not even remotely related what OP is asking. – Naveen Jan 20 '11 at 6:24
Im looking for simple C++ – Ethan Baumgarn Jan 20 '11 at 6:27
Good job. Unfortunately, I don't think that will be of much help... – Cody Gray Jan 20 '11 at 6:29
@Ethan: No, I didn't expect that's what you wanted. But, given the title of your post, I thought you needed your question to be put in context. You are asking about simply loop structures and not how to write a calculator. – Jonathan Wood Jan 20 '11 at 6:33
show 1 more comment

Not the answer you're looking for? Browse other questions tagged or ask your own question.