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;
}
上一篇:MVC 微信扫码支付


下一篇:Stringstream