Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99526 | 李大川LDC | 多项式输出 | C++ | 通过 | 100 | 0 MS | 244 KB | 693 | 2023-08-22 22:49:55 |
#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 { if(x!=0) { cout<<'-'; } else { cout<<a[i]; } } } if(x!=0) { cout<<"x"; if(x!=1) { cout<<"^"<<x; } } } x--; } return 0; }