Deprecated: Assigning the return value of new by reference is deprecated in /www/wwwroot/shabab.ps/public_html/vb/showthread.php on line 639

Deprecated: Assigning the return value of new by reference is deprecated in /www/wwwroot/shabab.ps/public_html/vb/showthread.php on line 1041

Deprecated: Assigning the return value of new by reference is deprecated in /www/wwwroot/shabab.ps/public_html/vb/showthread.php on line 1046

Deprecated: Assigning the return value of new by reference is deprecated in /www/wwwroot/shabab.ps/public_html/vb/showthread.php on line 1518

Deprecated: Assigning the return value of new by reference is deprecated in /www/wwwroot/shabab.ps/public_html/vb/showthread.php on line 1523
إستفسـآر مساعدة رجاءا :( مين بيعرف اوبجيكت ؟ - منتديات شباب فلسطين
نحن مع غزة


الإهداءات

العودة   منتديات شباب فلسطين > محطات تقنية > مُتعلقات التقنية

إضافة رد
 
أدوات الموضوع انواع عرض الموضوع
قديم 04-29-2012, 05:41 PM   #1
Arabian girl
I ♥ PALESTINE
 
الصورة الرمزية Arabian girl
“Life is full of beauty. Notice it. Notice the bumble bee, the small child, and the smiling faces. Smell the rain, and feel the wind.
سبحان الله وبحمده.... سبحان الله العظيم ..

قوة السمعة: 103 Arabian girl will become famous soon enough

افتراضي مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

السلام عليكم
كيفكم ؟ شو اخباركم ؟

علي" مشروع " " اسايمنت " "مهمة " اللي هو يعني
ولازم أسلمو اليوم

والاسايمنت بمادة الاوبجيكت اللي هي C++112 وطبعا أنا لسة مو عارفة رجلي من ايدي
بلشت فيه بس بدي مساعدة ازا حدا بيقدر يساعدني ومشكور مقدما

السلام عليكم كيفكم ؟ شو اخباركم ؟ علي" مشروع "
  اقتباس المشاركة
قديم 04-29-2012, 05:50 PM   #2
محمود
..{ مديــــــر عــــام }..
 
الصورة الرمزية محمود
عيد فطر سعيد ,,

قوة السمعة: 50 محمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond reputeمحمود has a reputation beyond repute

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

عليكم السلام يا هلا

والله ما اشتغلت قبل هيك c++ ، اشتغلت c

لكن مفهوم الابوجكت موجود ..

ممكن اقدر اساعدك ..

اتفضلي احكي سؤالك ..
  اقتباس المشاركة
قديم 04-29-2012, 06:25 PM   #3
Arabian girl
I ♥ PALESTINE
 
الصورة الرمزية Arabian girl
“Life is full of beauty. Notice it. Notice the bumble bee, the small child, and the smiling faces. Smell the rain, and feel the wind.
سبحان الله وبحمده.... سبحان الله العظيم ..

قوة السمعة: 103 Arabian girl will become famous soon enough

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

شكرا جزيلا محمود , هلا بحط الكود اللي صرت عامليتو لهلا والمطلوب منو :)
  اقتباس المشاركة
قديم 04-29-2012, 06:28 PM   #4
Arabian girl
I ♥ PALESTINE
 
الصورة الرمزية Arabian girl
“Life is full of beauty. Notice it. Notice the bumble bee, the small child, and the smiling faces. Smell the rain, and feel the wind.
سبحان الله وبحمده.... سبحان الله العظيم ..

قوة السمعة: 103 Arabian girl will become famous soon enough

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

#include <iostream>
using namespace std ;


class ArrayList
{
int size;
public :
int *list;

ArrayList();
ArrayList(int ) ;
void SetSize(int);
int GetSize();
void ReadArray();
void PrintArray();
int PositiveCount();
void copyPositiveValues(ArrayList obj1);
~ArrayList();
};


ArrayList::ArrayList(){size=5;};
ArrayList::ArrayList(int n){size=n;}
void ArrayList::SetSize(int S ){size=S;}

int ArrayList::GetSize(){return 6 ;}

void ArrayList::ReadArray(){
int num; for (int i ; i<size ; i++)
{
cin >>num;
list[i]= num ;}
}

void ArrayList::PrintArray(){ for (int i ; i < size ; i++)
cout <<list[i]<<" ";}


int ArrayList::PositiveCount(){int Pcount ; for(int i =0;i<size ; i++)
{
if (list[i] >= 0)
Pcount++;

}
return Pcount;
}


void ArrayList::copyPositiveValues(Array List obj1)
{
obj1.list;
for (int i=0; i<size ; i++)
{
if (list[i]>=0)
cout <<list[i] <<" " ;
}
cout <<endl;
}

ArrayList::~ArrayList(){ delete list ;}



void main ()
{
ArrayList list[6];
cout <<"please Enter 6 values to fill the List :";




}


الكود طلع ملخبط ما بعرف ليش , ازا عندك البرنامج ممكن تنسخو ويرجع لحالتو بتوقع :)
  اقتباس المشاركة
قديم 04-29-2012, 06:29 PM   #5
Arabian girl
I ♥ PALESTINE
 
الصورة الرمزية Arabian girl
“Life is full of beauty. Notice it. Notice the bumble bee, the small child, and the smiling faces. Smell the rain, and feel the wind.
سبحان الله وبحمده.... سبحان الله العظيم ..

قوة السمعة: 103 Arabian girl will become famous soon enough

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

هلا بجيب المطلوب إن شاء الله :)
  اقتباس المشاركة
قديم 04-29-2012, 06:37 PM   #6
Arabian girl
I ♥ PALESTINE
 
الصورة الرمزية Arabian girl
“Life is full of beauty. Notice it. Notice the bumble bee, the small child, and the smiling faces. Smell the rain, and feel the wind.
سبحان الله وبحمده.... سبحان الله العظيم ..

قوة السمعة: 103 Arabian girl will become famous soon enough

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟








iهي المطلوب أعملو
والكود ملخبط طلع عالمنتدى ما بعرف ليش :/
ازا ببين عندك بالبرنامج شفلي ازا عندي اغلاط منطقية لهلا رجاءا

ولك جزيل الشكر :)
  اقتباس المشاركة
قديم 04-29-2012, 06:59 PM   #7
Arabian girl
I ♥ PALESTINE
 
الصورة الرمزية Arabian girl
“Life is full of beauty. Notice it. Notice the bumble bee, the small child, and the smiling faces. Smell the rain, and feel the wind.
سبحان الله وبحمده.... سبحان الله العظيم ..

قوة السمعة: 103 Arabian girl will become famous soon enough

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

هي الكود بعد تعديلات طفيفة



#include <iostream>
using namespace std ;


class ArrayList
{
int size;
public :
int *list;

ArrayList();
ArrayList(int ) ;
void SetSize(int);
int GetSize();
void ReadArray();
void PrintArray();
int PositiveCount();
void copyPositiveValues(ArrayList obj1);
~ArrayList();
};


ArrayList::ArrayList(){size=5;};
ArrayList::ArrayList(int n){size=n;}
void ArrayList::SetSize(int S ){size=S;}

int ArrayList::GetSize(){return 6 ;}

void ArrayList::ReadArray(){
int num; for (int i=0 ; i<size ; i++)
{
cin >>num;
list[i]= num ;}
}

void ArrayList::PrintArray(){ for (int i=0 ; i < size ; i++)
cout <<list[i]<<" ";}


int ArrayList::PositiveCount(){int Pcount=0 ; for(int i =0;i<size ; i++)
{
if (list[i] >= 0)
Pcount++;

}
return Pcount;
}


void ArrayList::copyPositiveValues(Array List obj1)
{
obj1.list;
for (int i=0; i<size ; i++)
{
if (list[i]>=0)
cout <<list[i] <<" " ;
}
cout <<endl;
}

ArrayList::~ArrayList(){ delete list ;}



void main ()
{
ArrayList list[6];
cout <<"please Enter 6 values to fill the List :";

list[6].list=new int [6];


}
  اقتباس المشاركة
قديم 04-29-2012, 07:12 PM   #8
Arabian girl
I ♥ PALESTINE
 
الصورة الرمزية Arabian girl
“Life is full of beauty. Notice it. Notice the bumble bee, the small child, and the smiling faces. Smell the rain, and feel the wind.
سبحان الله وبحمده.... سبحان الله العظيم ..

قوة السمعة: 103 Arabian girl will become famous soon enough

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

هي الكود بعد تعديلات تانية
يعني تحسينات شوي



#include <iostream>
using namespace std ;


class ArrayList
{
int size;
public :
int *list;

ArrayList();
ArrayList(int ) ;
void SetSize(int);
int GetSize();
void ReadArray();
void PrintArray();
int PositiveCount();
void copyPositiveValues(ArrayList obj1);
~ArrayList();
};


ArrayList::ArrayList(){size=5;};
ArrayList::ArrayList(int n){size=n;}
void ArrayList::SetSize(int S ){size=S;}

int ArrayList::GetSize(){return 6 ;}

void ArrayList::ReadArray(){
int num; for (int i=0 ; i<size ; i++)
{
cin >>num;
list[i]= num ;}
}

void ArrayList::PrintArray(){ for (int i=0 ; i < size ; i++)
cout <<list[i]<<" ";}


int ArrayList::PositiveCount(){int Pcount=0 ; for(int i =0;i<size ; i++)
{
if (list[i] >= 0)
Pcount++;

}
return Pcount;
}


void ArrayList::copyPositiveValues(Array List obj1)
{
obj1.list;
for (int i=0; i<size ; i++)
{
if (list[i]>=0)
cout <<list[i] <<" " ;
}
cout <<endl;
}

ArrayList::~ArrayList(){ }



void main ()
{
ArrayList list[6];
cout <<"please Enter 6 values to fill the List :";

list[6].list=new int [6];
list[6].ReadArray();


}
  اقتباس المشاركة
قديم 04-29-2012, 08:30 PM   #9
§عاشقة غزة§
..{ مـشــرفـــة }..
•●{ سـفـيـرة الأنـــآقــة ..الصورة الرمزية §عاشقة غزة§

قوة السمعة: 202 §عاشقة غزة§ is a splendid one to behold§عاشقة غزة§ is a splendid one to behold§عاشقة غزة§ is a splendid one to behold§عاشقة غزة§ is a splendid one to behold§عاشقة غزة§ is a splendid one to behold§عاشقة غزة§ is a splendid one to behold§عاشقة غزة§ is a splendid one to behold§عاشقة غزة§ is a splendid one to behold

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

موفقة ارابين
انا زي الاطرش في الزفة هون
أكيد محمود راح يساعدك




  اقتباس المشاركة
قديم 04-29-2012, 08:35 PM   #10
~ | Mazaj
Hakuna Matata
 
الصورة الرمزية ~ | Mazaj

قوة السمعة: 50 ~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute~ | Mazaj has a reputation beyond repute

افتراضي رد: مساعدة رجاءا :( مين بيعرف اوبجيكت ؟

نزلي ملف الوورد الي فيه الاسايمنت اريح ..

وبالتوفيق :p

كنت بفكر اساعدك .. بس خلص البروفيسر اتولى المهمة ههههههههههه



كلآريتــآ
  اقتباس المشاركة
إضافة رد


الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1)
 

تعليمات المشاركة
لا تستطيع إضافة مواضيع جديدة
لا تستطيع الرد على المواضيع
لا تستطيع إرفاق ملفات
لا تستطيع تعديل مشاركاتك

BB code is متاحة
كود [IMG] متاحة
كود HTML معطلة

الانتقال السريع


الساعة الآن 08:10 AM.