Question
Create a C++ program that can evaluate arithmetic expressions using stack with integer numbers having any number of digits. These numbers are an alternative to
Create a C++ program that can evaluate arithmetic expressions using stack with integer numbers having any number of digits. These numbers are an alternative to fixed size integers or floating point numbers that always have a maximum number of accurate digits (dependent on size of CPU register).
The program should display the input expression and the results, separated with =. If one expression is not valid, skip it and continue to process next expression
input example :
0*00000000000000000+0000000000000001
(1+2)*(1000+2000)
output example:
0*00000000000000000+0000000000000001 = 1
(1+2)*(1000+2000) = 9000
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started