lifuguan 2016-01-30 14:03 采纳率: 26.7%
浏览 1928
已采纳

C++蛇形填数问题, 输出有问题

以下是代码,麻烦大神看一下有没有错
输入:n = 4;
结果:14 15 16 1
0 0 0 2
0 0 0 3
7 6 5 4

 #include <iostream>
#include <iomanip>
#define maxn 20
using namespace std;
int str[maxn][maxn];
int main()
{
    cout << "输入方阵:";
    int n;
    cin >> n;
    int x = 0, y = n - 1, tot = 1;
    memset(str,  0,  sizeof(str));
    str[0][n - 1] = 1;
    while (tot < n * n)
    {
        while (x+1< n  && str[x+1][y] == 0)
            str[++x][y] = ++tot;//down move
        while (y+1>= 0 && str[x][y-1] == 0)
            str[x][--y] = ++tot;//left move
        while (x - 1 >= 0 && str[x - 1][y] == 0)
            str[--x][y] = ++tot;//up move
        while (y + 1 < n  && str[x][y + 1] == 0)
            str[x][++y] = ++tot;
    }
    for (x = 0; x < n; x++)
    {
        for (y = 0; y < n; y++)
            cout << setw(5) << str[x][y];
        cout << endl;
    }
    system("pause");
    return 0;
}
  • 写回答

1条回答 默认 最新

  • threenewbee 2016-01-30 15:26
    关注
     #include <iostream>
    #include <iomanip>
    #define maxn 20
    using namespace std;
    int str[maxn][maxn];
    int main()
    {
        cout << "输入方阵:";
        int n;
        cin >> n;
        int x = 0, y = n - 1, tot = 1;
        memset(str,  0,  sizeof(str));
        str[0][n - 1] = 1;
        while (tot < n * n)
        {
            while (x+1< n  && str[x+1][y] == 0)
                str[++x][y] = ++tot;//down move
            while (y-1>= 0 && str[x][y-1] == 0) //修改
                str[x][--y] = ++tot;//left move
            while (x - 1 >= 0 && str[x - 1][y] == 0)
                str[--x][y] = ++tot;//up move
            while (y + 1 < n  && str[x][y + 1] == 0)
                str[x][++y] = ++tot;
        }
        for (x = 0; x < n; x++)
        {
            for (y = 0; y < n; y++)
                cout << setw(5) << str[x][y];
            cout << endl;
        }
        system("pause");
        return 0;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100