美文网首页
045_练习循环。

045_练习循环。

作者: 立秋i | 来源:发表于2018-03-31 00:33 被阅读0次

    namespace _045_练习循环 {

        class Program {

            static void Main(string[] args)

            {

                //int n = Convert.ToInt32(Console.ReadLine());

                //int count = 1;

                //for (int i = n-1; i >=1; i--)

                //{

                //    count = (count + 1)*2;

                //}

                //Console.WriteLine(count);

                string str = Console.ReadLine();

                string[] strArray = str.Split(' ');

                int[] numArray = new int[strArray.Length];

                for (int i = 0; i < strArray.Length; i++)

                {

                    numArray[i] = Convert.ToInt32(strArray[i]);

                }

                int min = numArray[0];

                int minIndex = 0;

                for (int i = 1; i < numArray.Length; i++)

                {

                    if (numArray[i] < min)

                    {

                        minIndex = i;

                        min = numArray[i];

                    }

                }

                //把最小的数字跟索引为0的位置的数字进行交换

                int temp = numArray[0];

                numArray[0] = numArray[minIndex];

                numArray[minIndex] = temp;

                for (int i = 0; i < numArray.Length; i++)

                {

                    Console.Write(numArray[i]+" ");

                }

                Console.ReadKey();

            }

        }

    }

    相关文章

      网友评论

          本文标题:045_练习循环。

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