fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main(void) {
  4. cout.fill(' ');
  5. cout.width(6);
  6. cout.precision(2);
  7. cout.flags(ios::fixed|ios::floatfield|ios::right);
  8. cout<<15.91;
  9. return 0;
  10. }
Success #stdin #stdout 0s 2828KB
stdin
Standard input is empty
stdout
    16