首页 > 代码库 > UVa 498 - Polly the Polynomial
UVa 498 - Polly the Polynomial
题目:一直多项式的系数,求不同的x对应多项式的值。
分析:数学题,简单题。直接代入多项式计算即可。
说明:注意输入格式。
#include <iostream> #include <cstdlib> #include <cstring> #include <cstdio> using namespace std; int temp,c[10000]; int main() { int n; while ((temp = getchar()) != EOF) { int count = 0; while (temp != '\n') { if (temp == '-' || temp >= '0' && temp <= '9') { ungetc(temp, stdin); scanf("%d",&c[count ++]); } temp = getchar(); } int flag = 0,data,sum; temp = getchar(); while (temp != '\n') { if (temp == '-' || temp >= '0' && temp <= '9') { ungetc(temp, stdin); scanf("%d",&data); sum = 0; for (int i = 0 ; i < count ; ++ i) { sum *= data; sum += c[i]; } if (flag) printf(" "); printf("%d",sum); flag = 1; } temp = getchar(); } printf("\n"); } return 0; }
UVa 498 - Polly the Polynomial
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。