编写一个程序,然后分别转换成为二进制数,八进制数和16进制数输出。谢谢了我才学到C++第二章,请用
编写一个程序,然后分别转换成为二进制数,八进制数和16进制数输出。谢谢了我才学到C++第二章,请用
日期:2018-04-30 13:00:00 人气:1
#include using namespace std;int n,a[100];int main(){ cout>n; int temp=n,num=0; while (temp>0) { a[++num]=temp % 2; temp=temp/2; } cout=1;i--) cout0) { a[++num]=temp % 8; temp=temp/8; } cout=1;i--) cout0) { a[++num]=temp % 1