我是编程初学者,我被分配了一个小项目。教练很不清楚我到底应该做什么。我所知道的是这是一种“随机游走”,我不应该使用一种方法,我只需要使用循环、分支和随机数生成器(甚至不确定这个)。它还应该从用户那里接收到一些步数,并根据给定的步数行走。无论如何,我是一个初学者,对 C# 的了解非常有限。我在这里和许多其他地方进行了很多研究,但没有成功。代码要么非常复杂,要么使用其他语言。我已经写了一些代码。我不知道这是否正确。请给我一些指示。没有错误但程序不工作,条件有问题。
static void Main(string[] args)
{
int row = 100;
int col = 100;
int[,] matrix;
matrix = new int[row, col];
int n;
Console.WriteLine("Enter the number of steps:");
n = int.Parse(Console.ReadLine());
const int up = 1;
const int down = 2;
const int left = 3;
const int right = 4;
int number=0;
for (int i=0;i<100;i++)
{
for (int j = 0; j < 100; j++)
matrix[i, j] = number;
}
Random randomdirection = new Random();
for (int counter = 0; counter < n; counter++)
{
int direction = randomdirection.Next(1, 5);
while (direction == 1)
{
if ((++col) < 100 && matrix[row, ++col] == 0)
{
matrix[row, ++col] = ++number;
}
else
break;
}
while (direction == 2)
{
if ((--col) < 100 && matrix[row, --col] == 0)
{
matrix[row, --col] = ++number;
}
else
break;
}
while (direction == 3)
{
if ((--row) < 100 && matrix[--row, col] == 0)
{
matrix[--row, col] = ++number;
}
else
break;
}
while (direction == 4)
{
if ((++row) < 100 && matrix[++row,col] == 0)
{
matrix[++row,col] = ++number;
}
else
break;
}
}
for (int i = 0; i < row; i++)
{
for (int j = 0; j < col; j++)
Console.WriteLine(matrix[i, j]);
}
Console.ReadKey();
}
这是任务:一个醉汉开始漫无目的地行走,从灯柱开始。在每个时间步,醉汉忘记了他或她在哪里,并随机走一步,北、东、南或西,概率为 25%。N步后酒鬼离灯柱有多远?它非常不完整。我们没有学过如此合乎逻辑的课程和方法,我们不应该使用它们。我认为的重点是使用数组、循环和分支。我确实自己编写了代码。这就是为什么它如此混乱。
把它改成这样:好像我没有看到问题:((
static void Main(string[] args)
{
Random randomObject = new Random();
int randomDirection;
int[,] mainarray;
int row=10;
int col=10;
mainarray=new int[row,col];
int number=0;
for (int b=0;b<row;b++)
{
for (int c=0;c<col;c++)
mainarray[b,c]=number;
}
while (true)
{
int n;
Console.WriteLine("Enter the number of steps: ");
n = Convert.ToInt32(Console.ReadLine());
for (int i = 0; i < n; i++)
{
randomDirection = randomObject.Next(1, 5);
if (randomDirection == 1 && row < 0 && row < 10)
mainarray[++row, col] = ++number;
if (randomDirection == 2 && row < 0 && row < 10)
mainarray[--row, col] = ++number;
if (randomDirection == 3 && col < 0 && col < 10)
mainarray[row, ++col] = ++number;
if (randomDirection == 4 && col < 0 && col < 10)
mainarray[row, --col] = ++number;
}
for (int i = 0; i < row; i++)
{
for (int j = 0; j < col; j++)
Console.Write(mainarray[i,j]);
}
}
Console.ReadKey();
}