在c#中,如何定义一个数组?怎样详细解析一个数组??
展开全部
我橡搏可是抱着100块钱的教材抄给你的
格式<basetype>[] <name>运培;
其中basetype可以是梁悄祥任何变量类型
数组必须访问之前初始化
初始化有2种
int [] a={5,9,8};
int [] a=new int[3];
格式<basetype>[] <name>运培;
其中basetype可以是梁悄祥任何变量类型
数组必须访问之前初始化
初始化有2种
int [] a={5,9,8};
int [] a=new int[3];
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int a[10]
定义一个为十位明李的首槐陆者顷数组,也可以把10变成变量
int a[i]
定义一个为十位明李的首槐陆者顷数组,也可以把10变成变量
int a[i]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TestConsole
{
class Program
{
static void Main(string[] args)
{
int n = 5;
//一维数组
//创建
int[] a = new int[n];
//初始化
int i;
for (i = 0; i < n; i++)
a[i] = i;
Console.WriteLine("蔽昌整型一维数组");
foreach (int k in a)
Console.Write("{0}\t", k);
Console.Write("宏仿扒\n");
//二维数组
char[,] c; /大消/声明
c = new char[n, n]; //申请空间
//初始化
int j;
char ch = 'a';
for (i = 0; i < n; i++)
for (j = 0; j < n; j++)
c[i, j] = Convert.ToChar(Convert.ToInt32(ch)+i+j);
Console.WriteLine("字符型二维数组");
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
Console.Write("{0}\t", c[i, j]);
Console.WriteLine();
}
Console.WriteLine();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TestConsole
{
class Program
{
static void Main(string[] args)
{
int n = 5;
//一维数组
//创建
int[] a = new int[n];
//初始化
int i;
for (i = 0; i < n; i++)
a[i] = i;
Console.WriteLine("蔽昌整型一维数组");
foreach (int k in a)
Console.Write("{0}\t", k);
Console.Write("宏仿扒\n");
//二维数组
char[,] c; /大消/声明
c = new char[n, n]; //申请空间
//初始化
int j;
char ch = 'a';
for (i = 0; i < n; i++)
for (j = 0; j < n; j++)
c[i, j] = Convert.ToChar(Convert.ToInt32(ch)+i+j);
Console.WriteLine("字符型二维数组");
for (i = 0; i < n; i++)
{
for (j = 0; j < n; j++)
Console.Write("{0}\t", c[i, j]);
Console.WriteLine();
}
Console.WriteLine();
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
1、string [] str=new string[数组胡胡谨的长度裤基];
2、string [] str=new string{1,2,3}
数据取做余值
for(int i=0;i<str.lenth;i++)
{
str[i].tostring();
}
2、string [] str=new string{1,2,3}
数据取做余值
for(int i=0;i<str.lenth;i++)
{
str[i].tostring();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询