Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99413 modongtao 多项式输出 C++ 解答错误 40 0 MS 248 KB 393 2023-08-22 16:53:41

Tests(4/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; }


测评信息: