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.
C++
したいのですがcout float f = 2.3333、小数点以下2桁のみです。それ、どうやったら出来るの?私はこのようなことを覚えていますが、うまくいきません:
cout
float f = 2.3333
cout << f:2 << endl;
私はiomanipなしでそれを解決することができました:
cout << (((int)f*100) % 100)/100;