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

各种进制转换

时间:2018-04-16 12:05:30      阅读:417      评论:0      收藏:0      [点我收藏+]

标签:长度   str   char   ++   scanf   names   cout   col   amp   

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;

//十进制n转r进制
void turnTor(long long n,int r)
{
    int a[1000];
    int t;
    int i=0;
    while(n>0)
    {
        t=n%r;
        a[i]=t;
        n=n/r;
        i++;
    }
    for(int j=i-1; j>=0; j--)
    {
        if(a[j]>=10)
        {
            cout<<a[j]-10+A;
        }
        else
        {
            cout<<a[j];
        }
    }

    cout<<endl;
}
//k进制数s[]转十进制
void turnToten(char s[],int r)
{
    int t;
    long long sum=0;
    int len=strlen(s); //得到字符串长度
    for(int i=0;i<len;i++)
    {
        if(s[i]>=0&&s[i]<=9)
        {
            t=s[i]-0;
        }
        else if(s[i]>=A&&s[i]<=Z)
        {
            t=s[i]-A+10;
        }
        sum=sum+t*(pow(r,len-1-i));
    }
    printf("%lld\n",sum);
}
int main()
{
/*
    //十进制n转r进制
    int n,r;
    while(~scanf("%lld%d",&n,&r))
    {
    if(n<0)
    {
        n=-n;
        cout<<"-";
    }
    turnTor(n,r);
    }
    */
    //k进制数s[]转十进制
    char s[33];
    int k;
    while(~scanf("%s",s))
    {
        scanf("%d",&k);
        turnToten(s,k);
    }

    return 0;
}

 

各种进制转换

标签:长度   str   char   ++   scanf   names   cout   col   amp   

原文地址:https://www.cnblogs.com/dshn/p/8854948.html

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