c ++中的日历间距问题

时间:2018-01-07 10:55:55

标签: c++ calendar

我想使用单循环显示日历,但主要问题是间距无法在它们之间提供适量的空格

cout << "M   T   W   TH   FRI   Sa   Su " << endl;

for (int i = 1; i <= 31; i++)
{
    if (i % 7 == 0)
    {
        cout << i << endl << "  ";
    }
    else
    {
        cout << i << "   ";
    }
}

cout << endl;

我的输出

enter image description here

1 个答案:

答案 0 :(得分:0)

for(const country of country_users) {
  for(const user of country.users) {
    users.push({
      ...user,
      country : country.country
    })
  }
}