码迷,mamicode.com
首页 > 其他好文 > 详细

P2064进制转换

时间:2019-02-28 21:27:38      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:ble   类型   http   target   就是   cstring   字符串数组   char   输出   

题目:https://www.luogu.org/problemnew/show/P2084

 

既然这道题放在字符串类型里,那么这里的N肯定得用字符数组来储存(这样也方便输出)。

那么我们不妨定义一个字符串数组a[1001](他说n的位数在1000以下),输出格式就是a[i]*m*k+.......(k为m的几次方),接下来就是求k了。我们发现,最低位的k是0,那么假设n有x位,最高位的k就是x-1.

所以每输出一次,k就要减一。

话不多说,代码奉上:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int m,k;
char a[1001];
int main()
{cin>>m>>a;
k=strlen(a)-1;//最高位的k
int t=strlen(a);
  for(int i=0;i<t;i++)
  {if(a[i]!=0)//0要省略
   cout<<a[i]<<"*"<<m<<"^"<<k; 
  if(k!=0&&a[i+1]!=0)cout<<"+";//"+"是个恶心的玩意,要加特判
  k--;
  }
 
  

 

P2064进制转换

标签:ble   类型   http   target   就是   cstring   字符串数组   char   输出   

原文地址:https://www.cnblogs.com/lcez56jsy/p/10452912.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!