如何在C Sharp中定义一维数组?
数组用于存储数据集合,但是将数组视为存储在连续内存位置的相同类型变量的集合通常会更有用。
定义一维数组-
int[] runs = new int[10];
现在让我们在同一行中初始化数组-
int[] runs = new int[5] {125, 173, 190, 264, 188};以下是显示如何声明,初始化和显示数组的示例-
示例
using System;
namespace Program {
class Demo {
static void Main(string[] args) {
int[] runs = new int[5] {125, 173, 190, 264, 188};
int i,j;
for (j = 0; j < 5; j++ ) {
Console.WriteLine("Innings score of Cricketer[{0}] = {1}", j, runs[j]);
}
Console.ReadKey();
}
}
}输出结果
Innings score of Cricketer[0] = 125 Innings score of Cricketer[1] = 173 Innings score of Cricketer[2] = 190 Innings score of Cricketer[3] = 264 Innings score of Cricketer[4] = 188
热门推荐
10 新年门口花束祝福语简短
11 盘锦结婚祝福语大全简短
12 父母生日祝福语 简短独特
13 家庭恩爱祝福语简短英文
14 高考俄语祝福语大全简短
15 虎年祝福语 诗句唯美简短
16 生日婚礼祝福语简短精辟
17 虎年喝酒拜年祝福语简短
18 教师闺蜜祝福语简短