其他分享
首页 > 其他分享> > 1010 一元多项式求导 (25 分)

1010 一元多项式求导 (25 分)

作者:互联网

如果求导之后没有任何非零项,需要输出0 0。

int main()
{
    string line;
    getline(cin,line);
    stringstream ss(line);

    int a,b;
    bool first=true;
    while(ss>>a>>b)
    {
        a*=b;
        b--;
        if(b<0) break;
        if(first) cout<<a<<' '<<b;
        else cout<<' '<<a<<' '<<b;
        first=false;
    }

    if(first) cout<<0<<' '<<0<<endl;

    //system("pause");
    return 0;
}

标签:25,ss,int,stringstream,求导,line,1010
来源: https://www.cnblogs.com/fxh0707/p/14398614.html