1

这是我到目前为止所拥有的,我收到一个错误:setw未在此范围内声明

void grid (void)
{
    for (int r = 0; r < 6; r++)
    {
        for (int c = 0; c < 6; c++)
        {
            cout << "-------------" << endl;
            cout << "|" << setw(4) << r + 1 << setw(4) << "|" << endl;
            cout << "-------------" << endl;
        }
    }
    cout << "-------------------------------";
}
4

1 回答 1

0

setwiomanipnot中定义iostream。因此,将此行添加到您的源文件中:

#include <iomanip>
于 2015-10-06T18:52:06.163 回答