c#之第四课
时间:2015-05-01 22:33:55
收藏:0
阅读:306
数组:
int[] numbers = {4, 5, 6, 1, 2, 3, -2, -1, 0}; foreach (int i in numbers) { System.Console.WriteLine(i); }
原文:http://www.cnblogs.com/lee0oo0/p/4471267.html
评论(0)