文章

61

粉丝

137

获赞

18

访问

38.4k

头像
八进制 题解:C++实现
P1417 华中科技大学机试题
发布于2024年1月17日 10:55
阅读数 771

#include<bits/stdc++.h>
using namespace std;

int main( ){
    int s;
    while(cin >> s){
        char ans[999999];
        int cnt = 0;
        while(s != 0){
            ans[cnt ++] = (s % 8) + '0';
            s /= 8;
        }
        for(int i = cnt -1 ;i >= 0 ;i --){
            cout << ans[i];
        cout << endl;
        }
    }

    return 0;
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发