Programlamada henüz cok yeni sayilirim ve C++ hocamiz bizden şu soruyu cözmemizi istedi..Cozüm geliştiremediğim icin sizden yardım beklemekteyim..Sorumuz:
// Reel sayilari modellemek amaciyla RealArray adinda bir tam class tasarlayiniz. Asagidaki main fonksiyonu sizin RealArray sinifinizda düzgünce calismalidir:
int main() {
const Real r1(12,34); // 12.34 Real r2; // 00.00 Real *r3=new Real (-74); // -74.00 Real r4 (100, -7); // 99.00
RealArray ra1(3); // An array with 3 empty spaces
// insert one object into next available place in the array
// if there is not enough space return false, and otherwise return true
if (!ra1.insert(r1))
cout << "The array is full" << endl;
ra1.insert (r2); // insert r2 into next available place ra1.insert (r4); // insert r4 into next available place
const RealArray ra2 = ra1;
// Find and print the greatest real number in the array