码迷,mamicode.com
首页 > 编程语言 > 详细

C# foreach,等量代换,冒泡排序

时间:2014-12-15 18:45:32      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:style   ar   color   sp   for   on   div   log   bs   

foreach:


        foreach (int h in a) //可以将数组读出来(自动遍历数组)
                {
                    Console.WriteLine(h);
                }

 

等量代换: 用一种量(或一种量的一部分)来代替和它相等的另一种量(或另一种量的一部分)。

 

 

            //需要有个中间变量来倒
            int a = 3, b = 5;
            int c;
            c = a;
            a = b;
            b = a;

 

冒泡排序

 

            int[] shu = new int[10];
            for (int i = 0; i < 10; i++)
            {
                shu[10] = Convert.ToInt32(Console.ReadLine());
            }
            for (int j = 0; j < 10 - 1; j++)
            {
                for (int i = j; i < 10; i++)
                {
                    if (shu[j] < shu[i])
                    {
                        int zhong = 0;
                        shu[i] = shu[j];
                        shu[j] = zhong;
                    }
                }
            }

C# foreach,等量代换,冒泡排序

标签:style   ar   color   sp   for   on   div   log   bs   

原文地址:http://www.cnblogs.com/2041388565m/p/4165204.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!