اذهب إلى المحتوى

لوحة المتصدرين

  1. Hamada Sayed

    Hamada Sayed

    الأعضاء


    • نقاط

      1

    • المساهمات

      106


  2. Eyad Alismail

    Eyad Alismail

    الأعضاء


    • نقاط

      1

    • المساهمات

      315


المحتوى الأكثر حصولًا على سمعة جيدة

المحتوى الأعلى تقييمًا في 03/06/20 في كل الموقع

  1. مرحبًا كرم، برأيي لايوجد شيء اسمو أفضل تخصص. جميع التخصصات ممتازة من الناحية الاجتماعية والراتب والوظيفة. ولكن هنا يوجد شيء مهم جدًا وهو أنت ماذا تحب وماذا تفضل؟ إذا استطعت الاجابة على هذا السؤال ستستطيع أن تجد التخصص الأفضل لك . في أي اختصاص كان إذا لم تكن تحبه لن تفلح به وإذا لم تفلح به لن تستطيع إيجاد وظيفة جيدة براتب جيد. ولكي تفلح بأي اختصاص يجب عليك أن تحبه. برأيي جواب هذا السؤال هو لديك.
    1 نقطة
  2. السلام عليكم المشكله في الconstructor bookType::bookType(string title, int noOfAuthors, string authors[4], string publisher, int ISBN, double price, int noOfCopies) { title = ""; noOfAuthors = 0; authors[0] = ""; authors[1] = ""; authors[2] = ""; authors[3] = ""; publisher = ""; ISBN = 0; price = 0.0; noOfCopies = 0; } // end constructor تحتاج لتهيئه الخصائص بالوسائط الممره وليس بقيم افتراضيه bookType::bookType(string title, int noOfAuthors, string authors[4], string publisher, int ISBN, double price, int noOfCopies) { this->title = title; this->noOfAuthors = noOfAuthors; this->authors[0] = authors[0]; this->authors[1] = authors[1]; this->authors[2] = authors[2]; this->authors[3] = authors[3]; this->publisher = publisher; this->ISBN = ISBN; this->price = price; this->noOfCopies = noOfCopies; } // end constructor
    1 نقطة
×
×
  • أضف...