黑马程序员技术交流社区

标题: 弱弱的问下这段代码哪里错了 [打印本页]

作者: 黑色L    时间: 2013-10-2 12:12
标题: 弱弱的问下这段代码哪里错了
本帖最后由 黑色L 于 2013-10-2 12:57 编辑

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _34冒泡排序
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] array = { 1, 2, 3, 4, 5 };
            //打印初始数组
            Console.Write("\n初始数组\n");
            for (int i = 0; i < array.Length; i++)
            {
                Console.Write(array + " ");
            }
            Console.WriteLine();
            //冒泡排序
            for (int i = 0; i < array.Length - 1; i++)
            {
                for (int j = 0; j < array.Length - 1 - i; j++)
                {
                    if (array[j] < array[j + 1])
                    {
                        int temp = array[j];
                        array = array[j + 1];
                        array[j + 1] = temp;
                    }
                }
            }
            //打印排序数组
            Console.Write("\n排序数组\n");
            for (int i = 0; i < array.Length; i++)
            {
                Console.Write(array + " ");
            }
            Console.ReadKey();
        }
    }
}


QQ图片20131002120727.jpg (17.66 KB, 下载次数: 50)

QQ图片20131002120727.jpg

作者: 飞、    时间: 2013-10-2 12:56
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _34冒泡排序
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] array = { 1, 2, 3, 4, 5 };
            //打印初始数组
            Console.Write("\n初始数组\n");
            for (int i = 0; i < array.Length; i++)
            {
                Console.Write(array[i] + " ");//Console.Write(array[i])
            }
            Console.WriteLine();
            //冒泡排序
            for (int i = 0; i < array.Length - 1; i++)
            {
                for (int j = 0; j < array.Length - 1 - i; j++)
                {
                    if (array[j] < array[j + 1])   
                    {
                        int temp = array[j];//int temp=array[j]
                        array[j] = array[j + 1];//array[j]=array[j+1]
                        array[j + 1] = temp;
                    }
                }
            }
            //打印排序数组
            Console.Write("\n排序数组\n");
            for (int i = 0; i < array.Length; i++)
            {
                Console.Write(array[i] + " ");//Console.Write(array[i])
            }
            Console.ReadKey();
        }
    }
}
改这样就好拉!!
作者: lgh521911    时间: 2013-10-2 21:15
飞、 发表于 2013-10-2 12:56
using System;
using System.Collections.Generic;
using System.Linq;

大飞的大头贴还真个性{:soso_e120:}

作者: 飞、    时间: 2013-10-2 22:04
lgh521911 发表于 2013-10-2 21:15
大飞的大头贴还真个性

汗颜呐~~





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2