Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99523 李大川LDC 多项式输出 C++ 解答错误 80 0 MS 252 KB 603 2023-08-22 22:47:19

Tests(8/10):


#include <iostream> #include <string> #include <algorithm> using namespace std; int a[105]; int main() { int n; cin>>n; int x=n; for(int i=0;i<=n;i++) { cin>>a[i]; if(a[i]!=0) { if(a[i]>0) { if(i!=0) { cout<<'+'; } if(a[i]!=1||x==0) { cout<<a[i]; } } else { if(a[i]!=-1) { cout<<a[i]; } else { cout<<'-'; } } if(x!=0) { cout<<"x"; if(x!=1) { cout<<"^"<<x; } } } x--; } return 0; }


测评信息: