Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ equation solver read/write text in class Hello here's the codes structure, I have a class textRead,this class reads a text from text file which
C++ equation solver read/write text in class
Hello here's the codes structure, I have a class textRead,this class reads a text from text file which is a equation ex: "3*x*x+2*x-13", gets the number from the user like x = 3 go write 3 instead of x and calculate the result and write another text file. My class:
class textRead
{
private:
string equation, result;
int number;
fstream fileptr;
public:
textRead(); // default constructor
openfile(); // open text file
userinput(); // get x value from the user
Display(); // calculate and write another text file
}
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