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;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥50 易语言把MYSQL数据库中的数据添加至组合框
  • ¥20 求数据集和代码#有偿答复
  • ¥15 关于下拉菜单选项关联的问题
  • ¥20 java-OJ-健康体检
  • ¥15 rs485的上拉下拉,不会对a-b<-200mv有影响吗,就是接受时,对判断逻辑0有影响吗
  • ¥15 使用phpstudy在云服务器上搭建个人网站
  • ¥15 应该如何判断含间隙的曲柄摇杆机构,轴与轴承是否发生了碰撞?
  • ¥15 vue3+express部署到nginx
  • ¥20 搭建pt1000三线制高精度测温电路
  • ¥15 使用Jdk8自带的算法,和Jdk11自带的加密结果会一样吗,不一样的话有什么解决方案,Jdk不能升级的情况