unity游戲開發(fā)-C#語言基礎(chǔ)篇(一維數(shù)組)

 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();
        }
      
    }
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市聘殖,隨后出現(xiàn)的幾起案子晨雳,更是在濱河造成了極大的恐慌,老刑警劉巖奸腺,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件餐禁,死亡現(xiàn)場離奇詭異,居然都是意外死亡突照,警方通過查閱死者的電腦和手機(jī)帮非,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來讹蘑,“玉大人末盔,你說我怎么就攤上這事∽浚” “怎么了陨舱?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長版仔。 經(jīng)常有香客問我游盲,道長误墓,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任益缎,我火速辦了婚禮谜慌,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘链峭。我一直安慰自己畦娄,他們只是感情好又沾,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布弊仪。 她就那樣靜靜地躺著,像睡著了一般杖刷。 火紅的嫁衣襯著肌膚如雪励饵。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天滑燃,我揣著相機(jī)與錄音役听,去河邊找鬼。 笑死表窘,一個胖子當(dāng)著我的面吹牛典予,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播乐严,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼瘤袖,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了昂验?” 一聲冷哼從身側(cè)響起捂敌,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎既琴,沒想到半個月后占婉,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡甫恩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年逆济,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片磺箕。...
    茶點(diǎn)故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡纹腌,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出滞磺,到底是詐尸還是另有隱情升薯,我是刑警寧澤,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布击困,位于F島的核電站广凸,受9級特大地震影響角寸,放射性物質(zhì)發(fā)生泄漏疗杉。R本人自食惡果不足惜奕纫,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一帅刀、第九天 我趴在偏房一處隱蔽的房頂上張望端圈。 院中可真熱鬧蜓斧,春花似錦盲镶、人聲如沸侥袜。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽宇色。三九已至九杂,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間宣蠕,已是汗流浹背例隆。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留抢蚀,地道東北人。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓鹿响,卻偏偏與公主長得像,于是被迫代替她去往敵國和親谷饿。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,472評論 2 348

推薦閱讀更多精彩內(nèi)容