1010. 一元多项式求导

拜拜、爱过 提交于 2019-11-29 19:35:13

 题目截图:

 

思路:

  简单模拟。

 

代码:

 1 /*
 2     1010. 一元多项式求导
 3 */
 4 
 5 #include <stdio.h>
 6 #include <string.h>
 7 #include <math.h>
 8 #include <stdlib.h>
 9 #include <time.h>
10 
11 int main() {
12     int a, b, flag=0;
13     while(scanf("%d %d", &a, &b) != EOF) {
14         if(flag==0 && b==0) {        // 零多项式 
15             printf("0 0");
16         }
17         if(b != 0) {
18             if(flag) {
19                 printf(" ");
20             }
21             // 模拟多项式求导 
22             printf("%d %d", a*b, b-1);
23             flag = 1;
24         }    
25     }
26 
27     return 0;
28 }

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!