私はここで頭を悩ませてきました:
cout << orig << " * " << count << endl;
string check = multiply2(orig, count);
cout << "Check was: " << check << " and number is: " << number << endl;
cout << "the compare result: " << check.compare(number) << endl;
if(check.compare(number) == 0)
{
cout << "wahoo it matches!!! we did it! " << endl;
}
else
{
cout << "Doesnt Match " << endl;
}
一致して印刷されることを期待していますwahoo it matches!!! we did it!
が、代わりに一致しないと言っています。
ここに私の出力があります:
1 * 900000
Check was: 900000 and number is: 90000
the compare result: 1
Doesnt Match
一致しない理由を知っている人はいますか?