在C#中,使用while循環遍歷數組的方法如下:
int[] numbers = { 1, 2, 3, 4, 5 };
i
,并將其設置為0。這將用于訪問數組中的每個元素:int i = 0;
while (i< numbers.Length)
{
Console.WriteLine(numbers[i]);
i++; // 更新索引變量,以便在下次迭代中訪問下一個元素
}
完整的示例代碼如下:
using System;
class Program
{
static void Main()
{
int[] numbers = { 1, 2, 3, 4, 5 };
int i = 0;
while (i< numbers.Length)
{
Console.WriteLine(numbers[i]);
i++;
}
}
}
運行此程序后,控制臺將輸出數組中的所有元素。