概要
[C++] std::の書式 小数点とかゼロ埋めとか
動作確認環境
Raspberry Pi 4
g++ (Raspbian 8.3.0-6+rpi1) 8.3.0
詳細
浮動小数点数を出力する精度を設定。
小数点以下2桁
1 |
std:: fixed << std::setprecision(2) << [変数] << ; |
HEXの2桁ゼロ埋め、大文字にて表示
1 |
std::cout<< std::hex << std::setfill('0') << std::setw(2) << std::uppercase << [変数] << std::endl; |
コメント