欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

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

时间:2020-11-16 11:43:37|栏目: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语言通讯录实例分享

栏    目:C代码

下一篇:C语言数据结构实现链表逆序并输出

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

本文地址:http://www.codeinn.net/misctech/23078.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

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

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有