从C ++文件中读取多项式?

问题描述 投票:0回答:1

我正在尝试从c ++程序中的文本文件中读取两个多项式,并且编写了以下代码,我的问题是它的仅读取第一个多项式,而第二个都是全零?我也在想它可能是因为idk如何停止读取第一个多边形,因为显然您不能写:while(f!='=')反正这是代码:

....
int main()
{
    poly *p1,*p2;
    p1=NULL;
    p2=NULL;
    fstream f;                                               //error: only reading first polynomial
    f.open("input1.txt");
//  string x1="4X7-2X6-1X3+4X2+3X0=0";                  //these are the polynomials im trying to read
//  string x2="2X6+3X2-2X0=0";
    int c,e; 
    char b;
    int x,i=0;
    cout<<"Number of terms of poly 1: ";
    cin>>x;
    while(i<x)
    {
        f>>c>>b>>e;
        cout<<c<<b<<e;
        p1=p1->create(p1,c,b,e);
        i++;
    }
    p1->display(p1);
    cout<<"\nNumber of terms of poly 2: ";
    cin>>x;
    i=0;
    while(i<x)
    {
        f<<endl;
        f>>c>>b>>e;
        cout<<c<<b<<e;
        p2=p2->create(p2,c,b,e);
        i++;
    }
    p1->display(p2);
    poly *p3;
    cout<<"\nThe addition of polynomials is:";
    p3=p3->polyaddition(p1,p2);
    p3->display(p3);
}

我想在不询问控制台上元素数量的情况下读取多项式。任何帮助,将不胜感激。谢谢!

c++ file polynomials
1个回答
0
投票

最重要的事情:编写函数

© www.soinside.com 2019 - 2024. All rights reserved.