概述
遍历数组
namespace 遍历数组
{
class Program
{
static void Main(string[] args)
{
int[] data = {1, 2, 3, 4, 5};
//for (int i = 0; i < data.Length; i++)
//{
// Console.WriteLine(data[i]);
//}
//int i = 0;
//while (i<data.Length)
//{
//
Console.WriteLine(data[i]);
//
i++;
//}
foreach (int temp in data) //foreach会依次取到数组中的值,然后赋值给temp,然后执行循环体,foreach只能取到值,不能取到索引
//,需要用到索引的话,可以使用for
while
{
Console.WriteLine(temp);
}
Console.ReadKey();
}
}
}
最后
以上就是简单巨人为你收集整理的c#学习笔记-遍历数组的全部内容,希望文章能够帮你解决c#学习笔记-遍历数组所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复