博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1874
阅读量:5925 次
发布时间:2019-06-19

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

题目链接:

#include 
#include
using namespace std;int a[100005];int main(){ int a1,b,m,n; while(~scanf("%d",&m),m) { scanf("%d%d",&a1,&b); n=a1+b; if(n==0) cout<<0; else if(n>0) { int i=0; while(n>0) { i++; a[i]=n%m; n=n/m; } for(int j=i;j>=1;j--) printf("%d",a[j]); } else { int i=0; cout<<"-"; n=-n; while(n>0) { i++; a[i]=n%m; n=n/m; } for(int j=i;j>=1;j--) printf("%d",a[j]); } cout<

转载地址:http://qqovx.baihongyu.com/

你可能感兴趣的文章
cheerio制作markDown索引目录
查看>>
iOS深浅拷贝的区别
查看>>
git简单介绍
查看>>
java输出格式-----System.out.printf()
查看>>
Ckeditor插件开发(3.x)
查看>>
程序通过创建线程实现删除自身(转)
查看>>
unicode 和 utf8
查看>>
python公共方法
查看>>
poj - 1988 Cube Stacking
查看>>
【2019-07-03】滴水穿石
查看>>
JAVA学习笔记--迭代器
查看>>
团队介绍
查看>>
如何创建并运行java线程
查看>>
自定义JQuery扩展方法
查看>>
python多线程,event,互斥锁,死锁,递归锁,信号量
查看>>
C++系列总结——volatile关键字
查看>>
使用Eclipse编译运行MapReduce程序 Hadoop2.6.0_Ubuntu/CentOS
查看>>
c编码-2
查看>>
linux包之sysstat之mpstat与pidstat命令
查看>>
如何查找业务用例和业务执行者
查看>>