为了账号安全,请及时绑定邮箱和手机立即绑定

cout<<oct<<x<<endl; cout<<dec<<x<<endl; cout<<hex<<x<<endl;

#include

using namespace std;

 int main() 

  int x; 

  cin>>x;  

cout<<oct<<x<<endl; 

  cout<<dec<<x<<endl; 

cout<<hex<<x<<endl;

  return 0; 

 为什么结果是 

12 

12 

a

正在回答

1 回答

#include<stdlib.h>

#include<iostream>

using namespace std;

 int main() 

  int x; 

  cin>>x;  

cout<<oct<<x<<endl; 

  cout<<dec<<x<<endl; 

cout<<hex<<x<<endl;

system("pause");

  return 0; 

}

这样输入10

显示的是12 10 a 

请问你的代码打全了吗?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之起航篇
  • 参与学习       291033    人
  • 解答问题       760    个

C++亮点尽在其中,本课程是在C语言基础上的一个延伸,得以升华

进入课程

cout<<oct<<x<<endl; cout<<dec<<x<<endl; cout<<hex<<x<<endl;

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信