7-1 一元多项式求导(20 分)PTA

唯一的坑是 求导后没有项的话,输出 0 0


#include
#include
#include

using namespace std;
int a, b;

int main() {
    int f = 0;
    while(~scanf("%d %d", &a, &b)) {
        if(b == 0) continue;
        if(a*b != 0) {
            if(!f) { printf("%d %d", a*b, b-1); f = 1; }
            else printf(" %d %d", a*b, b-1);
        }
    }
    if(!f) puts("0 0");
    return 0;
}


你可能感兴趣的:(7-1 一元多项式求导(20 分)PTA)