Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99417 | modongtao | 多项式输出 | C++ | 解答错误 | 80 | 0 MS | 240 KB | 392 | 2023-08-22 16:57:10 |
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; bool first = true; for (int i = n; i >= 0; i--) { int x; cin >> x; if (x == 0) continue; if (!first && x >= 1) cout << "+"; first = false; if (x == -1) cout << "-"; if (abs(x) != 1 || i == 0) cout << x; if (i != 0) cout << "x"; if (i > 1) cout << "^" << i; } return 0; }