博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Program to Convert Binary to Decimal
阅读量:6527 次
发布时间:2019-06-24

本文共 797 字,大约阅读时间需要 2 分钟。

Binary to Decimal in C++

To convert binary to decimal in C++ Programming, you have to ask to the user to enter any number in binary

to convert it into decimal, then display the equivalent decimal value on the output screen as shown here in the following program.

C++ Programming Code to Convert Binary to Decimal

Following C++ program ask to the user to enter any number in binary to convert it into decimal form, then display the result on the screen :

 

#include <iostream>

#include<string>

using namespace std;

int main()

{

long int binnum, decnum=0, i=1, rem;

cout<<"enter any binary number: ";
cin>>binnum;

 

//  循环 

while(binnum!=0)

{
rem=binnum%10;
decnum=decnum+rem*i;
i=i*2;
binnum=binnum/10;
}
cout<<"equivalent decimal value=: "<<decnum;

}

转载于:https://www.cnblogs.com/poission/p/10935667.html

你可能感兴趣的文章
oracle跟踪常用内部事件号
查看>>
【12c-安装篇】课程目标与课程内容
查看>>
wordpress 文章阅读统计插件之WP-PostViews
查看>>
决定开发者胜败的三要素
查看>>
lamp环境搭建与phpwind,wordprss实现
查看>>
DRBD+Corosync+Pacemaker+MySQL(下)
查看>>
iOS状态栏、导航栏的设置
查看>>
Linux常用命令总结之(四)pwd
查看>>
DBA整体职责方向
查看>>
robotframework环境搭建
查看>>
Docker常用命令和操作
查看>>
我的友情链接
查看>>
【分享】Android二次打包植入广告
查看>>
SQL Server 存储过程
查看>>
6.Python入门到精通
查看>>
MySQL表结构同步
查看>>
信息污染与身心健康
查看>>
Linux基础知识题解答(一)
查看>>
分享下遇到的无线路由显示“已连接”但上不了网的问题
查看>>
Mybatis调用Oracle返回结果集存储过程
查看>>