标签:ret pen bsp names 之间 style 不包含 problem scanf
计算多项式的导函数是一件非常容易的任务。给定一个函数f(x),我们用f‘(x)来表示其导函数。我们用x^n来表示x的n次幂。为了计算多项式的导函数,你必须知道三条规则:
(1)、(C)‘ = 0 如果C是常量
(2)、(C*x^n)‘ = C*n*x^(n-1) 如果n >= 1且C是常量
(3)、(f1(x)+f2(2))‘ = f1‘(x)+f2‘(x)
容易证明,多项式的导函数也是多项式。
现在,请你编写一个程序,给定一个不包含负系数且已合并好同幂次项的多项式f(x),计算出它的导函数。
3 0 10 2 3 2 1 3 10 0 1 2
0 6 2 30 0 1
思路:
只是题目比较难读,,代码是真提莫的短;
来,上代码:
#include<cstdio> using namespace std; int n; int main() { scanf("%d",&n); if(n==0) { printf("0\n"); return 0; } int cur; for(int i=n;i>0;i--) { scanf("%d",&cur); printf("%d ",cur*i); } return 0; }
AC日记——计算多项式的导函数 openjudge 1.5 38
标签:ret pen bsp names 之间 style 不包含 problem scanf
原文地址:http://www.cnblogs.com/IUUUUUUUskyyy/p/6154808.html