C++
直接利用格式转换输出

#include<iostream>
using namespace std;
int main(){
    printf("0%o 0X%X",1234,1234);
    return 0;
}

利用计算方法得出string然后输出: