1002 A+B for Polynomials

题解 一道简单的模拟题,我没有做优化,空间复杂度会比较大。有兴趣的话可以借助STL来优化一下。   #include<cstdio> #define EPS 1e-6 using namespace std; int k, n; float a; float result[1010]; int main() { scanf("%d", &k); for(int i = 0; i < k; ++
相关文章
相关标签/搜索