出什么问题了?我认为没有逻辑问题或编译错误
但是循环循环16次后突然停止了...
这是gcc编译器的错误吗?我差点吓坏了...
就像没有弹出的编译错误但不起作用一样,
在此先感谢:)很抱歉编辑问题
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#define RIGHT 0
#define DOWN 1
#define LEFT 2
#define UP 3
int main()
{
int x,y;
scanf("%d %d", &x, &y);
int **arr;
arr = (int**)malloc(sizeof(int*)*x);
for(int i = 0; i < x; i++) arr[i] = (int*)malloc(sizeof(int) * y );
int x_ = 0, y_ = 0;
int MAX_x = x-1;
int MAX_y = y-1;
int MIN_x = 0;
int MIN_y = 0;
int direction = RIGHT;
int num = 0;
while(true)
{
arr[x_][y_] = num++;
printf("%d", num);
//printf("%d", arr[x_][y_]);
switch ( direction )
{
case RIGHT:
if( y_ == MAX_y )
{
direction = DOWN; MIN_x ++; x_++;
}
else
{
y_++;
}
break;
case DOWN:
if( x_ == MAX_x )
{
direction = LEFT; MAX_y --; y_--;
}
else
{
x_++;
}
break;
case LEFT:
if( y_ == MIN_y )
{
direction = UP; MAX_x --; x_++;
}
else
{
y_--;
}
break;
case UP:
if( x_ == MIN_x )
{
direction = RIGHT; MIN_y ++; y_++;
}
else
{
x_++;
}
break;
default : break;
}
if(num == x * y )
break;
}
for(int i = 0; i < x; i ++)
{
for(int j = 0; j < y; j ++ )
{
printf("%3d", arr[i][j]);
}
printf("\n");
}
}
答案 0 :(得分:-1)
您要在case LEFT
中递减x_
,而不要递增。将您的x_++
更改为x_--
。
在您的case UP
中,您也想递减,因此请将x_++
更改为x_--
。
我认为您在这里的困惑是,向上移动需要递减,而不是递增。