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

十进制转二进制-快速算法

时间:2014-06-25 07:42:13      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   width   2014   string   

#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main(int agrc, char *agrv[])
{
	int iInPut = 0;
	while (cin >> iInPut)
	{

		string sBinary;//转换后的二进制存储为字符串,调用了默认构造函数初试化为空串
		int temp = abs(iInPut);
		if (temp == 0)
		{	
			//cout.width(11);//以11位的宽度右对齐输出
			cout << "          0-->0\n";
			continue;
		}

		while (temp)
		{
			if (temp & 0x01)
			{
				sBinary += '1';
			}
			else
			{
				sBinary += '0';
			}
			temp >>= 1;//对正数右移,高位补0
		}
		reverse(sBinary.begin(), sBinary.end());
		const char *cOutPut = sBinary.c_str();
		cout.width(11);
		cout << iInPut << (iInPut > 0 ? "-->" : "-->-") << cOutPut << endl;
	}
	return 0;
}

十进制转二进制-快速算法,布布扣,bubuko.com

十进制转二进制-快速算法

标签:class   blog   code   width   2014   string   

原文地址:http://blog.csdn.net/u011409995/article/details/34192317

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