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;
}
posted @ 2021-02-12 11:26  Dazzling!  阅读(35)  评论(0编辑  收藏  举报