1
我需要setw()的幫助。我有這種感覺:顯示結果C++程序
void PrintRecord(PLAYER &m, ostream &cout)
{
cout << setw(3) << m.PlayerID << '\t' << m.LastName << ',' << setw(4)
<< m.FirstName;
if (m.Hits > 0 || m.Walks > 0 || m.Outs > 0)
{
cout << "\t\t" << setprecision(3) << fixed << m.Hits << '\t'
<< m.Walks << '\t' << m.Outs << '\t' << m.BattingAvg
<< '\t' << m.OnBaseAvg << endl;
}
else
{
cout << endl;
}
}
這不是列在我的數據打印。
我要打印alighn colmns我的數據,
感謝
看看cstdio的printf。它可以讓你格式化你的輸出。 – byxor