首页 > 代码库 > 十进制转二进制-快速算法
十进制转二进制-快速算法
#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; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。