本程序实现的是十进制与不同进制之间的的数据转换,利用的数据结构是栈,基本数学方法辗转相除法。
conversion.h
#include
using namespace std;
//将十进制的数据n转换成m进制的数据
stack conversion(unsigned int n,unsigned int m)
{
stack s;
while(n)
{
s.push(n%m);
n = n/m;
}
return s;
}
源.cpp
#include
#include
#include"conversion.h"
using namespace std;
int main()
{
int n = 1348;
//将n转换成8进制
stack s = conversion(n,8);
while(!s.empty())
{
cout<
s.pop();
}
cout<
//将n转换成2进制
s = conversion(n,2);
while(!s.empty())
{
cout<
s.pop();
}
cout<
}