在C#中,for循環可以用于遍歷數組。以下是一個簡單的示例,展示了如何使用for循環遍歷整數數組并打印每個元素:
using System;
class Program
{
static void Main()
{
// 定義一個整數數組
int[] numbers = { 1, 2, 3, 4, 5 };
// 使用for循環遍歷數組
for (int i = 0; i < numbers.Length; i++)
{
// 訪問并打印數組元素
Console.WriteLine("Element at index {0} is {1}", i, numbers[i]);
}
}
}
在這個示例中,我們首先定義了一個名為numbers
的整數數組。然后,我們使用for循環遍歷數組。在循環內部,我們使用numbers.Length
獲取數組的長度,并使用變量i
作為數組的索引。我們訪問并打印數組中的每個元素,使用numbers[i]
來獲取索引為i
的元素。