lifuguan 2016-01-30 14:03 采纳率: 0%
浏览 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 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?