Discuss Stuck on problem in the C Programming forum on Dev Shed. Stuck on problem C programming forum discussing all C derivatives, including C#, C++, Object-C, and even plain old vanilla C. These languages are low level languages, and used on projects such as device drivers, compilers, and even whole computer operating systems.
Posts: 1
Time spent in forums: 16 m 49 sec
Reputation Power: 0
Stuck on problem
Hello, I am teaching myself programming using Kochan's "Programming in C" book.
I am stuck on an exercise and was hoping you guys could help me out. Here is the question:
4. Write a program that acts as a simple “printing” calculator.
The program should allow the user to type in expressions of the form:
number operator
The following operators should be recognized by the program:
+ - * / S E
The S operator tells the program to set the “accumulator” to the typed-in number.
The E operator tells the program that execution is to end.
The arithmetic operations
are performed on the contents of the accumulator with the number that was keyed in acting as the second operand.
The following is a “sample run” showing how the program should operate:
Begin Calculations
10 S //Set Accumulator to 10
= 10.000000 //Contents of Accumulator
2 / //Divide by 2
= 5.000000 //Contents of Accumulator
55 - //Subtract 55
-50.000000
100.25 S //Set Accumulator to 100.25
= 100.250000
4 * //Multiply by 4
= 401.000000
0 E //End of program
= 401.000000
End of Calculations.
Make certain that the program detects division by zero and also checks for unknown operators.
Posts: 142
Time spent in forums: 1 Day 6 h 21 m 2 sec
Reputation Power: 0
Quote:
Originally Posted by b49P23TIvg
What is the help you're looking for?
If you post some code, or also good the outline of an algorithm, or a plan, we can help fill in the details or suggest.
Cross-posting curtails interest.
...you have the most confusing username
__________________
"Life is not a journey with the intent on arriving at the finish line in a pretty and well preserved body. But rather to skid in broadside, totally worn out, thoroughly used up and loudly proclaiming, "Wow! What a ride!" -Anonymous Halo! || Diablo 2 LOD Modding || OLGA's BACK!