-1
我是上週開始使用C++的初學者。我正在嘗試製作一個簡單的程序,將英寸數轉換成英寸符號:例如, 62變成5'2" 。然而,當我嘗試編譯我有一些錯誤在第8行,我不知道它是什麼。在此先感謝。使用std :: stringstream時出現意外的結果
#include <iostream>
#include <sstream>
using namespace std;
string ConvertToFootInchMeasure (int totalInches){
string feet = ""+totalInches/12;
string inches = "" + totalInches%12;
stringstream converted;
conveted<<feet;
converted<<"'";
converted<<inches;
converted<<"\"";
return converted.str();
}
'string feet =「」+ totalInches/12;''和'string inches =「」+ totalInches%12;'不會做你認爲的事。 –
它是做什麼的? – mtheorylord