3
1
41
168
291
203
本程序提示用户输入一系列整型数字(没有长度限制),然后排序,然后输出。 程序自定义了一个类,用于存储用户输入的数字,类中用数组存储数字,数组会动态调整大小。 #include stdafx.h #include #include using namespace std; const int new_cell=100; class iArray { public:int * p;int cou...