我正在编写一个函数来返回一个数字的反转,即它转换int(1234)
为int(4321)
. 这是我目前拥有的:
#include <iostream>
#include <cstdlib>
#include <string>
#include <sstream>
using namespace std;
int reverse(int num) {
stringstream ss (stringstream::in | stringstream::out);
string initial;
int reversed;
// read the number in to a string stream
ss << num;
initial = ss.str();
// flush the stringstream
ss.str("");
for(unsigned int i(0); i <= initial.size(); i++) {
ss << initial[initial.size() - i];
}
ss >> reversed;
return reversed;
}
int main(int argc, const char *argv[])
{
int test = 9871;
cout << "test = " << test << endl;
cout << "reverse = " << reverse(test) << endl;
return 0;
}
然而,这只是输出:
test = 9871
reverse = 0
而且我很确定问题出在该行ss >> reversed
中,问题在于它reversed
被设置为0
而不是值ss
,但我无法弄清楚这段代码有什么问题,而且它看起来应该是令人愤怒的简单的。任何人都可以帮忙吗?
谢谢