数値の逆数を返す関数を書いています。つまり、に変換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
ありがとう