欢迎来到入门教程网!

C语言

当前位置:主页 > 软件编程 > C语言 >

C++ 如何用cout输出hex,oct,dec的解决方法

来源:本站原创|时间:2020-01-10|栏目:C语言|点击:

HEX:

复制代码 代码如下:

#include <iostream.h>
#include <iomanip.H>
main(void)
{
       long n = 10000;
       cout << hex << n ;
       return 0;
}

OCT:
复制代码 代码如下:

#include <iostream.h>
#include <iomanip.H>
main(void)
{
       long n = 10000;
       cout << oct << n ;
       return 0;
}

DEC:
复制代码 代码如下:

#include <iostream.h>
#include <iomanip.H>
main(void)
{
       long n = 10000;
       cout << dec << n << endl;
       return 0;
}

复制代码 代码如下:

#include <iostream>
using namespace std;

int main()
{
  cout.setf(ios::hex, ios::basefield);

  cout << 100; // this displays 64

  return 0;
}

复制代码 代码如下:

#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
   int n;
   cout << "Enter a decimal number: ";
   cin >> n;
   cout << n << " in hexadecimal is: "
        << hex << n << '/n'
        << dec << n << " in octal is: "
        << oct << n << '/n'
        << setbase( 10 ) << n << " in decimal is: "
        << n << endl;
   return 0;
}

上一篇:C# interface与delegate效能比较的深入解析

栏    目:C语言

下一篇:C语言关键字auto与register的深入理解

本文标题:C++ 如何用cout输出hex,oct,dec的解决方法

本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/4361.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有