黑马程序员技术交流社区

标题: int数组怎么转换为string [打印本页]

作者: 张建康    时间: 2012-3-2 19:24
标题: int数组怎么转换为string
本帖最后由 张建康 于 2012-3-2 19:25 编辑

            int   [] count = { 83, 60, 38, 22, 64, 76, 23, 22, 75, 85, 34, };
          int counta=0;
            for (int i = 0; i < count.Length - 1; i++)
            {
                for (int j = 0; j < count.Length - 1-i; j++)
                {
                    if (count[j] < count[j + 1])
                    {
                    int temp=count[j];
                        count[j]=count[j+1];
                        count[j + 1] = temp;
                    }
                  

                }
            }
         
            for (int i = 0; i < count.Length; i++)
            {
                counta += count;
            }
                Console.WriteLine(counta);

                Console.ReadKey();

最后输出的结果是数组的和,但想得到的结果是:在一行里从大到小的顺序排列。怎么把int 数组转换为string阿?
作者: 莫洪刚    时间: 2012-3-2 21:01
你是说把排序后的数组转换成一个字符串吗?
int[] count = { 83, 60, 38, 22, 64, 76, 23, 22, 75, 85, 34, };
            string mystr = "";
            for (int i = 0; i < count.Length - 1; i++)
            {
                for (int j = 0; j < count.Length - 1 - i; j++)
                {
                    if (count[j] < count[j + 1])
                    {
                        int temp = count[j];
                        count[j] = count[j + 1];
                        count[j + 1] = temp;
                    }


                }
            }

            for (int i = 0; i < count.Length; i++)
            {
                mystr += count[i];
            }
            Console.WriteLine(mystr);

            Console.ReadKey();
作者: 张建康    时间: 2012-3-3 11:04
莫洪刚 发表于 2012-3-2 21:01
你是说把排序后的数组转换成一个字符串吗?
int[] count = { 83, 60, 38, 22, 64, 76, 23, 22, 75, 85, 34, ...

要的就是这个,谢了哥们儿。




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