C++primer 中有一个问题求指导答

C++语言 码拜 9年前 (2015-11-15) 836次浏览
 1 #include<iostream>
2 #include<string>
3 using namespace std;
4
5 int  main(){
6         const string hexdigits=”0123456789ABCDEF”;
7         cout<<“Enter a series numbers between 0 and 15”
8                 <<“separates by spaces.Hit ENTER when finished:”
9                 <<endl;
10         string result;
11         string::size_type n;
12         while(cin>>n)
13                 if(n<hexdigits.size())
14                         result+=hexdigits[n];
15         cout<<“You hex number is”<<result<<endl;
16         return 0;}
这个代码是要将有效范围的数转换成16进制,编译没错,为什么功能不能实现?这是c++ 上的一段程序
解决方案:20分
你的程序一直都在while里,不是按回车能结束的,除非输入错误(如非数字)才会跳出循环

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明C++primer 中有一个问题求指导答
喜欢 (0)
[1034331897@qq.com]
分享 (0)