美文网首页
第十一次作业第二题

第十一次作业第二题

作者: 似是而非_30f0 | 来源:发表于2018-12-09 15:26 被阅读0次

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

namespace ConsoleApplication2
{
class Program
{

static void Main(string[] args)
{
try
{
Console.WriteLine("请输入6个数字");
int[] num = new int[6];
int temp = 0;
for (int i = 0; i < num.Length; i++)
{
Console.Write("第{0}个数字:", i+1);
num[i] = Convert.ToInt32(Console.ReadLine());

            for (int j = 0; j < num.Length - 1; j++)            
            {if(num[j]>num[j+1])
                 temp = num[j];
                num[j] = num[j + 1];
                num[j + 1] = temp;
            }

        }
        Array.Sort(num);
        for(int i =0; i<num.Length;i++)
        {
            Console.Write("{0},", num[i]);
        }
        


    }
    catch
    {
        Console.WriteLine("输入错误");
    }


    Console.ReadKey();
}

}

}

image.png

相关文章

网友评论

      本文标题:第十一次作业第二题

      本文链接:https://www.haomeiwen.com/subject/gzxkhqtx.html