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.
ビデオの人数として浮動小数点数を表示したいと思います。これが一例です。
これを行う方法はありますか?
次のようfloatに変換できます。std::string
float
std::string
std::stringstream ss; ss << 0.5f; std::string s = ss.str();
sその後、PutTextに渡すことができます
s