星空网 > 软件开发 > ASP.net

C# 数组 [一]

数组:具有相同类型的若干变量按有序的形式组织起来的一种形式。这些按序排列的同类数据元素的集合称为数组。
定义数组
int[] 变量名 = new int [n];

string[] myStringArray = new string[6];

int[] myArray = new int[] {1, 3, 5, 7, 9};
取值:int a = myArray[0];

一维数组
int [] array = new int [5]{1,2,3,4,5};
int [] array = new int[5];
array[0] = 1;
array[1] = 2;
array[2] = 3;
array[3] = 4;
array[4] = 5;
// array[5] = 6; 超出索引范围

int a = array[2];

string [] ss = new string[3];
ss[0] = "1";
ss[1] = "2";
ss[2] = "3";

string b = ss[2];


输入三个人名放入数组
string[] name = new string[3];
//Console.Write("请输入第一个人名:");
//name[0] = Console.ReadLine();
//Console.Write("请输入第二个人名:");
//name[1] = Console.ReadLine();
//Console.Write("请输入第三个人名:");
//name[2] = Console.ReadLine();
for (int i = 1; i <= 3; i++)
{
Console.Write("请输入第{0}个人名:",i);
name[i - 1] = Console.ReadLine();
}

 

//根据班级人数创建一个数组,要求每个人的姓名都要放进去
Console.Write("请输入班级人数:");
int n = int.Parse(Console.ReadLine());
string [] name =new string[n];
for (int i = 0; i < n; i++)
{
Console.Write("请输入第{0}个人的姓名:",i+1);
name[i] = Console.ReadLine();
}
Console.WriteLine("所有人员姓名输入完毕,请按回车键查看所有人员姓名!");
Console.ReadLine();
Console.WriteLine();
for (int i = 0; i < n; i++)
{
Console.Write(name[i]+"\t");
}
Console.ReadLine();

 

从控制台输入班级人数
将每个人的年龄放入数组,
将所有人的年龄求总和
求平均年龄
求年龄最大
Console.Write("请输入班级人数:");
int n = int.Parse(Console.ReadLine());
int [] age = new int[n];
int sum = 0;
for (int i = 0; i < n; i++)
{
Console.Write("请输入第{0}个人的年龄:",i+1);
age[i] = int.Parse(Console.ReadLine());
sum+=age[i];
}
Console.WriteLine(sum);
Console.WriteLine(sum/n);
int agemax = 0;
for (int i = 0; i < n; i++)
{
if (agemax < age[i])
{
agemax = age[i];
}
}
Console.WriteLine("最大年龄是:"+agemax);

//冒泡排序
for (int i = 0; i < n; i++)
{
for (int j = i; j < n-1; j++)
{
if (age[i] < age[j+1])
{
int zhong = age[i];
age[i] = age[j+1];
age[j+1] = zhong;
}
}
}

for (int i = 0; i < n; i++)
{
Console.WriteLine(age[i]);
}
Console.ReadLine();

课后题

双色球:从33个红球中随机六个,按从小到大顺序排序,从16个蓝球中选取一个。

int[] suiji = new int[6];
Random ran = new Random();
for (int i = 0; i < 6; i++)
{
bool b = true;
int a = ran.Next(1, 34);
for (int j = 0; j < 1; j++)
{
if(a==suiji[j])
{
b=false;
i--;
}
}
if(b)
{
suiji[i]=a;
}
}
Console.Write("红球:");
for(int i = 0; i < 6; i++)
{
Console.Write(" "+suiji[i]);
}
Console.WriteLine();
for (int a = 0; a < 1; a++)
{
Random b = new Random();
int c = ran.Next(1,17);
Console.WriteLine("蓝色:"+c);
}




原标题:C# 数组 [一]

关键词:C#

C#
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

联邦快递喊话:在2020年将大力赶超亚马逊!:https://www.ikjzd.com/articles/112999
年末清货季,全球范围内又掀起物流延迟、禁发潮:https://www.ikjzd.com/articles/113
外媒盘点10大圣诞热销产品,2020圣诞节如何布局?:https://www.ikjzd.com/articles/113000
乱乱乱!2019法国大罢工扰乱欧洲圣诞节市场!:https://www.ikjzd.com/articles/113002
FBA费用又涨了!如何从姐夫手中拿回应得的利润?:https://www.ikjzd.com/articles/113003
亚马逊对快递标签提出要求, 规范贴标行为!:https://www.ikjzd.com/articles/113004
泰国签证有出生地 泰国出生入籍护照:https://www.vstour.cn/a/411245.html
宠物梳专利查询分析:https://www.kjdsnews.com/a/1842293.html
相关文章
我的浏览记录
最新相关资讯
海外公司注册 | 跨境电商服务平台 | 深圳旅行社 | 东南亚物流