14

我试图让我的输出看起来像这样:

size       time1       time2
-------------------------------
10         4           8
100        48          16
1000       2937        922
10000      123011      3902
100000     22407380    830722

而且我知道我需要使用setw(),setfill()left. 但是,我的尝试不断给我不正确的输出。这是我的代码的一个示例:

std::cout << "size" << std::setw(20) << "time" << std::setw(20) << "time2\n";
std::cout << std::setfill('-') << std::setw(60) << "-" << std::endl;
run = 10;
for(int i = 0; i < 5; i++) {
    std::cout << run;
    run *= 10;
    std::cout << std::setw(20) << std::left << time1[i];
    std::cout << std::setw(20) << std::left << time2[i] << "\n";
}

这是输出:

size    time1    time2
------------------------------------------------------------
103-------------------13------------------
100171-----------------199-----------------
100013183---------------667-----------------
10000670130--------------8205----------------
10000014030798-------------1403079888---------

我已经尝试更改我使用setw()的 、setfill()和的顺序left,但我现在只是盲目地飞行。我还搜索了 iomanip 教程。我正在按照指示 - 据我所知 - 但我仍然没有得到它。

我如何阻止setfill()跑过来?我如何证明左对齐但setw()用来阻止数字相互碰撞?

4

3 回答 3

7

怎么样:

std::cout << "size" << std::setw(20) << "time" << std::setw(20) << "time2\n";
std::cout << std::setfill('-') << std::setw(60) << "-" << std::endl;
run = 10;
std::cout << std::setfill(' ');  //fill with spaces
for(int i = 0; i < 5; i++) {
    std::cout << std::setw(20) << std::left << run;  // fill the run column
    run *= 10;
    std::cout << std::setw(20) << std::left << time1[i];
    std::cout << std::setw(20) << std::left << time2[i] << "\n";
}
于 2014-03-26T03:48:21.267 回答
1

sj0h 的答案很好,只是标题不太一致。为了解决这个问题,我以“left”和“setw”开始标题行,我还必须以“endl”而不是“\n”结尾。

  std::cout << std::left << std::setw(20) << "size" << std::setw(20) << "time" << std::setw(20) << "time2" << std::endl;

  std::cout << std::setfill('-') << std::setw(60) << "-" << std::endl;
  run = 10;
  std::cout << std::setfill(' ');  //fill with spaces
  for(int i = 0; i < 10; i++) {
      std::cout << std::setw(20) << std::left << run;  // fill the run column
      run *= 10;
      std::cout << std::setw(20) << std::left << time1[i];
      std::cout << std::setw(20) << std::left << time2[i] << std::endl;
  }
于 2018-03-23T17:07:59.953 回答
0

在 C++20 中,您将能够使用它std::format来执行此操作:

  std::cout << std::format("{:20}{:20}{:20}\n", "size", "time", "time2");
  std::cout << std::format("{:-<60}\n", "");
  int run = 10;
  for(int i = 0; i < 5; i++) {
    std::cout << std::format("{:<20}{:<20}{:<20}\n", run, time[i], time2[i]);
    run *= 10;
  } 

输出:

size                time                time2               
------------------------------------------------------------
10                  4                   8                   
100                 48                  16                  
1000                2937                922                 
10000               123011              3902                
100000              22407380            830722              

同时你可以使用基于的 {fmt}std::format。{fmt} 还提供了print使这更容易和更高效的功能(godbolt):

  fmt::print("{:20}{:20}{:20}\n", "size", "time", "time2");
  fmt::print("{:-<60}\n", "");
  int run = 10;
  for(int i = 0; i < 5; i++) {
    fmt::print("{:<20}{:<20}{:<20}\n", run, time[i], time2[i]);
    run *= 10;
  }

免责声明:我是 {fmt} 和 C++20 的作者std::format

于 2021-03-03T04:19:27.290 回答