博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
多项式输出
阅读量:5742 次
发布时间:2019-06-18

本文共 662 字,大约阅读时间需要 2 分钟。

直接模拟:

#include
using namespace std;int a[1000];int n;int main(){ cin >> n; for (int i = n; i >= 0; --i)cin >> a[i]; for (int i = n; i > 0; --i){ if (a[i] == 0)continue; else{ if (a[i] == 1&&i!=n){ cout << "+"; } else if (a[i] == -1){ cout << "-"; } else if (a[i] > 0&&a[i]!=1){ if(i!=n)cout << "+";cout<< a[i]; } else if (a[i] < 0){ cout << a[i]; } if(i>=2)cout << "x^" << i; else cout << 'x'; } } if (a[0] != 0){ if (a[0]>0)cout << "+"; cout << a[0]; } cout << endl;}

 

转载于:https://www.cnblogs.com/ALINGMAOMAO/p/10595424.html

你可能感兴趣的文章
《游戏开发物理学(第2版)》一导读
查看>>
Erlang简史(翻译)
查看>>
深入实践Spring Boot2.4.2 节点和关系实体建模
查看>>
信息可视化的经典案例:伦敦地铁线路图
查看>>
10个巨大的科学难题需要大数据解决方案
查看>>
Setting Up a Kerberos server (with Debian/Ubuntu)
查看>>
用 ThreadLocal 管理用户session
查看>>
setprecision后是要四舍五入吗?
查看>>
shiro初步 shiro授权
查看>>
上云就是这么简单——阿里云10分钟快速入门
查看>>
MFC多线程的创建,包括工作线程和用户界面线程
查看>>
我的友情链接
查看>>
FreeNAS8 ISCSI target & initiator for linux/windows
查看>>
cvs文件提交冲突解决方案
查看>>
PostgreSQL数据库集群初始化
查看>>
++重载
查看>>
Rainbond 5.0.4版本发布-做最好用的云应用操作系统
查看>>
nodejs 完成mqtt服务端
查看>>
在ASP.NET MVC 中获取当前URL、controller、action
查看>>
Spring IoC容器初的初始化过程
查看>>