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

机试真题 10进制转换为8进制

时间:2020-04-11 18:58:54      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:nbsp   div   mes   col   转换   namespace   ret   names   har   

老生常谈的问题,留商取余;

 

#include<iostream>
#include<string>
using namespace std;

int n;

string charge(int n) {
    string s="";
    while (n != 0) {
        int r = n % 8;
        s = char(0 + r) + s;
        n = n / 8;
    }
    return s;
}

int main() {
    cin >> n;
    cout << charge(n) << endl;
}

 

机试真题 10进制转换为8进制

标签:nbsp   div   mes   col   转换   namespace   ret   names   har   

原文地址:https://www.cnblogs.com/songlinxuan/p/12681297.html

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