数値の頭に0を詰めて桁を揃える

数値の頭に0を詰めて桁を揃える - My Life as a Mock Quant のC++版をやりたい。 #include <iostream> #include <iomanip> #include <string> #include <sstream> int main() { // 現状保存 std::ios::fmtflags curret_flag = std::cout.flags(); //123の頭に5個0を詰めて8桁にする std::ostringstream ss; ss << std::setw(8) << std::setfill('0') << 123 << </sstream></string></iomanip></iostream>…