Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ダイアログにいくつかのデータを表示する必要があります (MFC 、Visual C++ 2010 を使用)
ダイアログボックスstd::coutを使用する最も簡単な方法は何ですか?std::setw
std::cout
std::setw
私はいくつかの方法を見つけましたcout(それらが機能するかどうかはわかりません)が、何もありませんsetw...
cout
setw
ありがとう
cout の代わりに std::stringstream を使用します。
std::stringstream out; out << std::setw(5) << 100 << std::endl; // and display out.str() in dialog box