ملفات وتطبيقات وبرامج جاهزة للتحميل جزء ( 1 ) | برمجة1

Unknown
0

http://adf.ly/1HiKFf

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

>>> البرامج المقررة في المادة <<<
ملفات وتطبيقات وبرامج جاهزة للتحميل جزء ( 1 ) | برمجة 1
برامج من الوحدة الثالثة حتى أخر وحدة

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

constructor

#include<iostream>
using namespace std;
class father{
public:
father();
~father();};
father::father(){
cout<<"I am father construcor"<<endl;}
father::~father(){
cout<<"I am father deconstrucor"<<endl;
system("pause");}

class son:public father{
public:
son();
~son();};
son::son(){cout<<"son constructor"<<endl;}
son::~son(){cout<<"son deconstrucor"<<endl;}
main() {
father f;
son ali;
son husam;
}

*******************************************************

father

#include<iostream>
using namespace std;
class father{
private:
int vprivate;
protected:
int vprotected;
public:
int vpublic;
};
class son:public father{
public:
son(); };
son::son(){vpublic=2; vprotected=3;
vprivate=5;}
main(){
son s;

}

*******************************************************

template

#include<iostream>
using namespace std;
template <class T>
T small(T a, T b);
main() {
char x='a';
char y='f';
cout<<small(x,y)<<endl;
system("pause");}

template <class T>
T small(T a,T b){
return(a<b?a:b);}

*******************************************************

SWAP1

#include <iostream.h>
#include <conio.h>
//void swap(&int, &int);
void swap (int *x,int *y) ;

void main()
{
int x,y;
x=45;
y=67;
clrscr();
cout << x << y << endl;
swap(&x,&y);
cout << x << y << endl;
getch();
}

void swap (int *x,int *y)
{
int t=*x;
*x=*y;
*y=t;
}

*******************************************************

SWAP2

#include <iostream.h>
#include <conio.h>
void swap(int&, int&);

void main()
{
int x,y;
x=45;
y=67;
clrscr();
cout << x << y << endl;
swap(x,y);
cout << x << y << endl;
getch();
}

void swap (int &x,int &y)
{
int t=x;
x=y;
y=t;
}

**********************************************
للتحميل
" هنــــــــــــــــا "
cis, do ...... while, while, برامج برمجة 1, برامج وملفات c++ جاهزة للتحميل, برمجة (1), برمجة 1, تخصص أنظمة المعلومات الحاسوبية, تخصص أنظمة المعلومات الحاسوبية - جامعة القدس المفتوحة, تخصص التكنولوجيا, تعلم البرمجة 1, تعلم برامج البرمجة والتكنولوجيا, دروس تخصص التكنولوجيا أنظمة المعلومات الحاسوبية, شرح بالفيديو لبرامج تخصص التكنولوجيا, شرح د.سهى الأعرج وأنور عكاشة, شرح دروس بالفديو لتخصص أنظمة المعلومات الحاسوبية, مع الدكتور أ.زكريا الكيالي, مقررات تخصص أنظمة المعلومات الحاسوبية فرع برنامج التكنولوجيا و الاتصالات, مقررات وكتب تخصص أنظمة المعلومات الحاسوبية تكنولوجيا المعلومات والاتصالات, ملفات وتطبيقات وبرامج جاهزة للتحميل جزء ( 3 ) | برمجة 1,
Tags:

إرسال تعليق

0تعليقات

اطرح اي سؤال خاص بالموضوع في التعليقات

إرسال تعليق (0)