  
#include<iostream.h>

const int ARRAYSIZE = 100000;

class  Individual 
 {
    public:

       int identification;
       int age;
       float weight;
       float *data[ARRAYSIZE];

       Individual(int ID)               //   Constructor
        { 

           identification = ID;
           age = 10 *  ID;
           weight = 99;

           for (int j = 0; j< ARRAYSIZE; j++)
               {  
                  data[j] = new float;
                  *data[j] = j / 3.14;
               };
          }

       ~Individual() { }               //   Destructor  
                                       //    ADD CODE HERE.
     };



void main() 
{
       Individual *me;
       int count = 0; 

       while(1)
        {   
          me = new Individual(count);      
          cout << count++ << "\n" ;
        }
}
