dec,hex and oct

#include <iostream>
using namespace std;
int main(){
    int x=25;
    cout<<hex<<x<<' '<<dec<<x<<' '<<oct<<x<<'\n';
    return 0;
}
posted @ 2018-04-26 20:51  UnderScrutiny  阅读(239)  评论(0编辑  收藏  举报