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

入门模拟——(进制转换)B1022.D进制的A+B

时间:2020-01-01 21:05:43      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:code   nbsp   class   转换   while   max   color   bsp   alt   

技术图片

 

 

#include <bits/stdc++.h>
#include<math.h>
using namespace std;
const int MAX_LEN = 100005;
const int MAX_D = 31;
int main(){
    int a,b,n;
    cin>>a;
    cin>>b;
    int temp = a+b;
    cin>>n;
    int result[MAX_D];
    int num = 0;
    do{
        result[num++] = temp % n;
        temp =  temp / n;
    }while(temp != 0);12 12 
    for(int i = num-1;i>=0;--i){
        cout<<result[i];
    }
    system("pause");
    return 0;
} 

入门模拟——(进制转换)B1022.D进制的A+B

标签:code   nbsp   class   转换   while   max   color   bsp   alt   

原文地址:https://www.cnblogs.com/JasonPeng1/p/12129531.html

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