定义一个一维数组,长度为10,从键盘输入数组元素,要求用数组名作为函数参数,实现冒泡排序

 我来答
感慨嵩74GL
2018-06-05 · TA获得超过741个赞
知道小有建树答主
回答量:867
采纳率:45%
帮助的人:143万
展开全部
namespace shuzu
{
    class Program
    {
        static void Main(string[] args)
        {       
            int a,i = 0;
            string t = string.Empty;
            int[] arrayInt = new int[10];
            int[] arrayIntNew;
            while (i<10)
            {
                Console.WriteLine("请输入第"+(i+1)+"个整数");
                t = Console.ReadLine();
                try
                {
                    a = Convert.ToInt32(t);
                    arrayInt[i] = a;
                    i++;
                }
                catch (Exception)
                {
                    Console.WriteLine("输入有误,请重新输入整数!");
                } 
            }
             Console.WriteLine("将数组进行冒泡排序遍历输出...");
            arrayIntNew=GetArray(arrayInt);        
            foreach (var item in arrayIntNew)
            {
                Console.WriteLine(item);
            }
            Console.ReadKey();
        }
        public static int[] GetArray(int []arrayName) {
            Array.Sort(arrayName);
            return arrayName;
        }
    }
}
DoramiHe
2018-06-05 · 知道合伙人互联网行家
DoramiHe
知道合伙人互联网行家
采纳数:25335 获赞数:59535
2011年中山职业技术学院毕业,现担任毅衣公司京东小二

向TA提问 私信TA
展开全部
int[] data=new int[5];
Console.WriteLine("请输入5个整数:");

for (int i = 0; i < 5; i++)
{
data[i] =Int32.Parse( Console.ReadLine());
}

Console.WriteLine("输出整数:");
foreach(int i in data)
{
Console.WriteLine(i);
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式