رافع حسين المدير العام
عدد المساهمات : 208 النقاط : 2453 تاريخ التسجيل : 23/12/2011 العمر : 37 الموقع : الابيض -عروس الرمال-
| موضوع: برامج جاهزة في لغة ++c والبرمجة الكائنية (OOP) الإثنين 21 مايو 2012 - 19:30 | |
| بسم الله الرحمن الرحيم اقدم لكم هذه البرامج الجاهزة في لغة ++c والبرمجة الكائنية المنحى (OOP) :- البرنامج الاول:- # include class time { private : int h;int m; int s; public : time() { h=0; m=0; s=0; } void print() { cout<<"h:"<<" "<cout<<"m:"<<" "<cout<<"s:"<<" "<} void settime() { cout<<"enter the value of hour"; cin>>h; cout<<"enter the value of minit"; cin>>m; cout<<"enter the value of second"; cin>>s; } }; void main() { time t ;
t.settime(); t.print(); }
البرنامج الثاني :- #include class xxx { public : void zaa() { int x,n,k,i,j; long r; cin>>k; for (j=1;j<=k;j++) { cin>>x>>n; r=1; for (i=1;i<=n;i++) r=r*x; cout< } } }; void main() { xxx ob; ob.zaa(); }
البرنامج الثالث :- #include #include class triangle { private : float a,b,c,s,area; public : void set_data(float a1, float b1, float c1) { a=a1; b=b1; c=c1; s=(a1+b1+c1)/2; area= sqrt(s*(s-a)*(s-b)*(s-c)); } void show_data() { cout<<"the area of triangle ="<} }; void main() { triangle ob1; float n1,n2,n3; cin>>n1>>n2>>n3; ob1.set_data(n1,n2,n3); ob1.show_data (); }البرنامج الرابع :- #include class car { char name,color,number; public : car() { name=0; color=0 ; number=0 ; } void print() { char name[15] ; cin>>name; char color[10]; cin>>color; char number[10]; cin>>number; cout<<"the car name is:"<<" "<cout<<"the car color is:"<<" "<cout<<"the car number is:"<<" "<} }; void main() { car c; c.print(); }
البرنامج الخامس :- #include class faca { public : void man() { int n,i,fact; for (n=1;n<=10;n++) { fact=1; for (i=1;i<=n;i++) fact=fact*i; cout<<"fact "< }
}}; void main() { faca ob; ob.man(); }
البرنامج السادس :- #include class mean; class summation { friend class mean; private : int n; float x,sum; public : summation() { sum=0; cout<<"enter n:"<cin>>n; for(int i=1;i<=n;i++) { cout<<"enter x["<cin>>x; sum+=x; } cout<<"summation="<} }; class mean { private : float s; public : mean(summation ss) { s=ss.sum/ss.n; cout<<"mean="<} }; int main() { summation s;
mean m(s);
}
والله الموفق ... | |
|