PAT 1010 乙等 (一元多项式求导)c++

来源:互联网 发布:multisim12.0 mac 编辑:程序博客网 时间:2024/06/07 09:48

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

时间限制
400 ms
内存限制
65536 kB
代码长度限制
8000 B
判题程序
Standard

设计函数求一元多项式的导数。(注:xn(n为整数)的一阶导数为n*xn-1。)

输入格式:以指数递降方式输入多项式非零项系数和指数(绝对值均为不超过1000的整数)。数字间以空格分隔。

输出格式:以与输入相同的格式输出导数多项式非零项的系数和指数。数字间以空格分隔,但结尾不能有多余空格。注意“零多项式”的指数和系数都是0,但是表示为“0 0”。

输入样例:
3 4 -5 2 6 1 -2 0
输出样例:
12 3 -10 1 6 0思路: 本题比较简单,需要注意的是零多项式的处理,就是输入只有两项的(1 0),输出为(0 0)。
#include <iostream>using namespace std;int main(){int count(0);  //用来记录输入个数while(1){int temp1(0), temp2(0);cin >> temp1 >> temp2;count+=2;if(temp2==0 && count ==2){cout << "0 0";       //零多项式 ,只有两项 }else if(temp2==0){break;    //指数为0时不需要考虑系数和指数输出,最后两项 }else{if(count ==2){cout << temp1*temp2 << " " << temp2-1;}else{cout <<" "<< temp1*temp2 << " " << temp2-1;}}} return 0;} 



0 0