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.
つまり、数字が揃うようにしたい。ただし、コードでそれを行うことはできません。これが私のコードです:
for (int s=0; s < 4; s++) { cout << left << setw(200) << fuit[s] << ": "; for (int x=0; x <13; x++) { cout << right << setw(2) << fuit[s][x]; }
問題はここにあります:
cout << left << setw(2) << suit[s] << ": ";
ここでは、配置を左に、幅を 2 に設定します。右揃えで幅を広くしたいでしょう。