码迷,mamicode.com
首页 > 其他好文 > 详细

数制转换

时间:2014-07-30 12:26:13      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:数制转化

// exam1.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>
#include <stack>
using namespace std;

void conversion(int n)
{
	cout<<"The number "<<n<<"'s"<<" octal representation is:"<<endl;
	stack<int> s;
	while(n!=0)
	{
		int temp=n%8;
		n=n/8;
		s.push(temp);
	}

	while(!s.empty())
	{
		int temp=s.top();
		cout<<temp;
		s.pop();
	}

	cout<<endl;
	return;
}

int main(void)
{
	int num=1000;

	conversion(num);

	system("pause");
	return 0;
}

数制转换,布布扣,bubuko.com

数制转换

标签:数制转化

原文地址:http://blog.csdn.net/cjc211322/article/details/38294049

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!