#include
#include
#include
#include
using namespace std;
class ArrayTest
{
public:
void testArray(int size)
{
for(int i=1;i<=size;i++)
{
int *iA=new int[i];
cout<<"iA的尺寸為 ="<
delete [] iA;
}
}
};
int main(int argc, char** argv){
//=====START=====//
ArrayTest at;
at.testArray(5),at.testArray(10);
//=====END=====//
system("PAUSE");
return 0;
}
徵求會的人..能幫我轉換C語法...
有註解會更好= =
因為我想知道...處理程序的原理
本人..C++和C傻傻分不清...
2007-10-21 13:43:11 · 1 個解答 · 發問者 小烏龜 2 in 電腦與網際網路 ➔ 程式設計
#include
#include
void ta(int size){
int i;
for(i=0;i
printf("size= %d\n",(i+1));
free(p);
}
}
int main(int argc, char* argv[]){
//=====START=====//
ta(5),ta(10);
//=====END=====//
system("PAUSE");
return 0;
}
2007-10-21 17:11:21 · answer #1 · answered by Big_John-tw 7 · 0⤊ 0⤋