请问怎样怎样将三个数排序.最简单的方法.
请问怎样怎样将三个数排序.最简单的方法. --------------------编程问答----------------------------------------编程问答-------------------- 用list<int> _list=new list<int>
System.Collections.ArrayList test = new System.Collections.ArrayList();
test.Add(2);
test.Add(1);
test.Add(3);
test.Sort();
好点!
_list.sort(); --------------------编程问答-------------------- System.Collections.ArrayList test=new System.Collections.ArrayList();
int a=Convert.ToInt32(Console.ReadLine());
int b=Convert.ToInt32(Console.ReadLine());
int c=Convert.ToInt32(Console.ReadLine());
test.Add(a);
test.Add(b);
test.Add(c);
test.Sort();
怎么不输出啊? --------------------编程问答-------------------- 没说它会输出啊, 都还在test里面
补充:.NET技术 , C#