class Program
{
static void Main(string[] args)
{
// 第一種聲明方式 存放類型[] 數(shù)組名字
int[] arr = new int[] {1,2,3,4,5 };//數(shù)組放入元素再菊;固定好類型不能放字符串或其他類型的元素歇僧;
int[] arr1 = new int[5] { 1, 2, 3, 4, 5 };//固定數(shù)組長度后面就不能改變拒贱;
int[] arr2 = new int[5];//重新new數(shù)組铐刘;改變長度;
arr2 = new int[3] ;
arr2[arr2.Length-1] = 22;//給數(shù)組下標(biāo)數(shù)組賦值镰惦;最后一個元素迷守;
for (int i = 0; i < arr.Length;i++ )
{
Console.WriteLine(arr[i]);
}
Console.WriteLine(arr2[arr2.Length - 1]);
int[] array = new int[] { };//數(shù)組整形初始化格式;
string[] Str = new string[] { };//數(shù)組字符串格式旺入;
double[] Double = new double[] { };//數(shù)組小數(shù)點(diǎn)格式盒犹;
// 練 數(shù)組格式
int[] ArrayInt = new int[] { };
string[] arrStr = new string[] { };
double[] arrDou = new double[] { };
int[] arrInt = new int[]{ };
string[] arrName=new string[4]{"萬","孫","黃","高"};
for(int i=0;i<arrName.Length;i++){
Console.WriteLine(arrName[i]);
}
//int[] arrInt = new int[] { };
//arrInt=new int[10];
//for (int i = 0; i < arrInt.Length;i++ )
//{
// arrInt[i] = i + 1;
// // Console.WriteLine(i+1);
//}
//foreach語句的應(yīng)用;
foreach(int Int1 in arrInt){
Console.WriteLine(Int1);
}
//第二種聲明方式 存放類型[]數(shù)組名字={1眨业,2急膀,3,4龄捡,5}直接賦值卓嫂;
bool[] ArrBool = { false, true, 6 > 5 };
Console.WriteLine(ArrBool[0]);
Console.WriteLine(ArrBool[1]);
Console.WriteLine(ArrBool[2]);
Console.WriteLine("\n");
foreach (bool Bool in ArrBool)
{
Console.WriteLine(Bool);
}
Console.WriteLine("\n");
foreach (bool Bools in ArrBool)
{
if (Bools)
{
Console.WriteLine(Bools);
}
}
int[] ArrInt = new int[] { };
ArrInt = new int[50];
for (int i = 0; i < ArrInt.Length; i++)
{
ArrInt[i] = 2 * i + 1;
}
foreach (int Int in ArrInt)
{
Console.WriteLine(Int);
}
//練習(xí)
int[] arrInt = new int[] { };
int[] MyInt = new int[24];
int j = 0;
arrInt = new int[50];
for (int i = 0; i < arrInt.Length; i++)
{
arrInt[i] = 2 * i + 1;
if (arrInt[i] % 5 == 0 || arrInt[i] % 3 == 0)
{
MyInt[j] = arrInt[i];
j++;
}
}
Console.Write(j);
Console.WriteLine("\n這些數(shù)為:");
foreach (int arrInt1 in MyInt)
{
Console.Write(arrInt1 + " ");
}
Console.WriteLine("\n\n偶數(shù)為:");
int[] arr = new int[] { };
arr = new int[100];
for (int i = 0; i < arr.Length; i++)
{
arr[i] = i + 1;
if (arr[i] % 2 == 0)
{
Console.Write(arr[i] + " ");
}
}
Console.WriteLine("\n\n 小數(shù)為:");
double[] arrDou = new double[] { };
arrDou = new double[10];
for (int i = 0; i < arrDou.Length; i++)
{
arrDou[i] = i + 0.123;
}
foreach (double Dou in arrDou)
{
Console.WriteLine(Dou);
}
Console.WriteLine("100以內(nèi)奇數(shù)被5或3整除");
int[] arrInt = new int[] { };
arrInt = new int[50];
int num = 0;
for (int i = 0; i < arrInt.Length; i++)
{
arrInt[i] = 2 * i + 1;
if (arrInt[i] % 3 == 0 || arrInt[i] % 5 == 0)
{
num++;
}
}
int[] arrInt1 = new int[num];
int j = 0;
for (int i = 0; i < arrInt.Length; i++)
{
if (arrInt[i] % 3 == 0 || arrInt[i] % 5 == 0)
{
arrInt1[j] = arrInt[i];
j++;
}
}
foreach (int arrInt2 in arrInt1)
{
Console.WriteLine(arrInt2);
}
Console.WriteLine("\n\n" + num);
Console.ReadKey();
}
}
unity游戲開發(fā)-C#語言基礎(chǔ)篇(一維數(shù)組)
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來讹蘑,“玉大人末盔,你說我怎么就攤上這事∽浚” “怎么了陨舱?”我有些...
- 文/不壞的土叔 我叫張陵,是天一觀的道長版仔。 經(jīng)常有香客問我游盲,道長误墓,這世上最難降的妖魔是什么? 我笑而不...
- 正文 為了忘掉前任益缎,我火速辦了婚禮谜慌,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘链峭。我一直安慰自己畦娄,他們只是感情好又沾,可當(dāng)我...
- 文/花漫 我一把揭開白布弊仪。 她就那樣靜靜地躺著,像睡著了一般杖刷。 火紅的嫁衣襯著肌膚如雪励饵。 梳的紋絲不亂的頭發(fā)上,一...
- 文/蒼蘭香墨 我猛地睜開眼瘤袖,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了昂验?” 一聲冷哼從身側(cè)響起捂敌,我...
- 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎既琴,沒想到半個月后占婉,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡甫恩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年逆济,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片磺箕。...
- 正文 年R本政府宣布击困,位于F島的核電站广凸,受9級特大地震影響角寸,放射性物質(zhì)發(fā)生泄漏疗杉。R本人自食惡果不足惜奕纫,卻給世界環(huán)境...
- 文/蒙蒙 一帅刀、第九天 我趴在偏房一處隱蔽的房頂上張望端圈。 院中可真熱鬧蜓斧,春花似錦盲镶、人聲如沸侥袜。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽宇色。三九已至九杂,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間宣蠕,已是汗流浹背例隆。 一陣腳步聲響...
- 正文 我出身青樓鹿响,卻偏偏與公主長得像,于是被迫代替她去往敵國和親谷饿。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- class Program{static void Main(string[] args){//第一種方式