نيلاي نشر 8 أبريل 2020 أرسل تقرير نشر 8 أبريل 2020 اتمنى تساعدوني بحلها Write C++ Instruction for the followin 1. Define integer variable with its name St-Name and value 5. 2. Define one-dimensional Array with its name Courses and insert these String values (Math, Physics , Arabic). 3. Constructor instruction for St-Name class. اقتباس
1 Mohamd Imran نشر 9 أبريل 2020 أرسل تقرير نشر 9 أبريل 2020 بتاريخ On 4/9/2020 at 02:44 قال Nadia الجهني: اتمنى تساعدوني بحلها Write C++ Instruction for the following 1. Define integer variable with its name St-Name and value 5. 2. Define one-dimensional Array with its name Courses and insert these String values (Math, Physics , Arabic). 3. Constructor instruction for St-Name class. السلام عليكم @Nadia الجهني تفضلي قمت بعمله لك وقمت بوضع comments توضح. اجزاء الكود ,ان احتجت شرح لاي جزء من الكود انا جاهز #include <iostream> using namespace std; //constructor Class class courserc{ public: string courses[3] = {"Math", "Physics" , "Arabic"}; courserc() { cout<<"Array elements are as follows:"<<endl; } }; int main() { //make constructor object courserc obj; for(int i=0;i<3;i++) { //use the obj; cout<<"Courses "<<i<<"= "<<obj.courses[i]<<endl; } return 0; } تحياتي شكرا لك 1 اقتباس
السؤال
نيلاي
اتمنى تساعدوني بحلها
Write C++ Instruction for the followin
1. Define integer variable with its name St-Name and value 5.
2. Define one-dimensional Array with its name Courses and insert these String values (Math, Physics , Arabic).
3. Constructor instruction for St-Name class.
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.