gpt4 book ai didi

c++ - 使用二维数组制作 6x6 网格

转载 作者:太空宇宙 更新时间:2023-11-04 13:27:10 25 4
gpt4 key购买 nike

这是我目前所拥有的,我收到一个错误:setw was not declared in this scope

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 << "-------------------------------";
}

最佳答案

setwiomanip 而不是 iostream 中定义。因此,将这一行添加到您的源文件中:

#include <iomanip>

关于c++ - 使用二维数组制作 6x6 网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32976664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com