Untitled 1
 
  ما هو بنك سيتي جروب النصاب في السعودية؟ (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 116 )           »          شركة أديس القابضة (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 308 )           »          اختيار افضل شركة تداول (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 286 )           »          رسوم الحساب الاستثماري في تداول الراجحي (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 561 )           »          كيف اعرف اسهمي القديمه برقم الهوية (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 338 )           »          تريد فيو (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 886 )           »          كيفية شراء الاسهم الامريكية الحلال (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 967 )           »          افضل شركة توزع أرباح في السوق السعودي (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 1166 )           »          حساب سعر الصرف (اخر مشاركة : ارينسن - عددالردود : 0 - عددالزوار : 1323 )           »          قصيدة رثاء في حمد الحضبي السبيعي (اخر مشاركة : عبدالله الحضبي - عددالردود : 0 - عددالزوار : 1298 )           »         
 

 
العودة   منتديات سبيع الغلباء > الـمـنـتـديـات الـتـعـلـيـمـيـة > المنتدى التـعـلـيـمـي
 

المنتدى التـعـلـيـمـي شامل مواضيع المعلم والطالب والمدرسة ، أخبار وزارة التربية والتعليم وتحضير الدروس و ملفات البوربوينت الخاصة بالشرح وجداول الإجازات و مناهج التعليم


برامج من برمجتي بلغة ال ++c

شامل مواضيع المعلم والطالب والمدرسة ، أخبار وزارة التربية والتعليم وتحضير الدروس و ملفات البوربوينت الخاصة بالشرح وجداول الإجازات و مناهج التعليم


إضافة رد
 
أدوات الموضوع
 
غير متصل
 رقم المشاركة : ( 1 )
العويد
عضو مميز
رقم العضوية : 35
تاريخ التسجيل : 14 - 04 - 2003
الدولة :
العمر :
الجنس :
مكان الإقامة : AR
عدد المشاركات : 1,475 [+]
آخر تواجد : [+]
عدد النقاط : 11
قوة الترشيح : العويد is on a distinguished road
الأوسمـة
بيانات الإتصال
آخر المواضيع

التوقيت
برامج من برمجتي بلغة ال ++c

كُتب : [ 03 - 06 - 2004 ]

Salam

First of all you need to have the Visual Baisc C++ Program installed in your PC to show these programs

here is some programs by Visual C++, really good programs with different ideas

sorry i am postting this topic from school but, anyhow you can upload these programs and enjoy them

they are good for students whom study computer science or engineerin, and also for those people who have companies

and i used the Arabic keyboard just for the topic to be clear for all

----

besmelahh

Program 1
the line of the program is here :

http://www.geocities.com/malsobaiei/Project6.zip

the program do the following :



This program uses an Employee Class (Base class), and Software
Engineer and
Technician classes as the derived classes. The employee class has the
character attributes of ID, name, and job role, and a float salary.
The
software engineer has the additional character attributes of
PrimarySystem
and PrimaryLanguage. The technician has the attributes of
PrimarySystem
and MainCertification. All character attributes must be dynamically
created.

Your program needs 3 arrays: EmployeeArray, SEArray, and TechArray.
Your
mission is to read the input file Employee.dat, determine which array
the
record needs to be inserted into, and store the object in the array.
An
employee who is not a software engineer or a technician is put in the
Employee array.

After all the records have been read in, create an output file
“Employee.txt” that shows the heading of Employee and shows the
employees.
At the end of the each group print the average salary and the coun
of
records.

Sample Input
1234567890, Joe Smith, 23456.89, Data Administrator,

563333,Jane Smith, 48934.89,Software Engineer,Mainframe,COBOL,

33312345,Sue Smith, 41234.70,Software Engineer,NT,VB,

5434543,Sue Doe,12321.90,Technician,Phone,None,

33789076,Smitty Smith, 52234.35,Software Engineer,NT,VB,

3338907654321,Sara Smith,72234.35,Software Engineer,NT,VB,

232323232,John Doe,434344,Manager,

1233232,Janice Doe,34343.90,Technician,Network,MSCE,

334533,Sally Smith, 63434.35,Software Engineer,NT,VB,

357333,John Smith, 32134.76,Software Engineer,NT,C,

-------------------

Program 2
Here is the link of the project :

http://www.geocities.com/malsobaiei/project7.zip

Purpose:

Use of template classes.

Program:

Modify the Array class to make it a template class. The Array class
files
are on WebCT. Also, add a method insert, which will increase the size
of
the array if the array is at its max when you try to do the insert.
Add in
the Bubble Sort and Binary Search functions.

To test this class, create a main that creates an Array object of
integers
and one with C++ strings. Populate the array with from a comma
delimited

file with the following data:

1,5,3,10,12,20,14,13,24,2,4,29,

the,little,brown,fox,ran,over,the,hill,to,catch,a, pail,of,water,

Sort the arrays. Output to a file “results.txt” the original arrays
and
the sorted arrays.

Do a search in the integer arrays for 0, 3, 16, 4, 100. Print the
results

to your file.

Do a search in the string arrays for Apple, little, water,zoo. Print
the
results to your file.



-----------------

Program 3
This project is a simple game which is Tic Tac Toe

I think we all know it because it is in the last version of MSN.6

we call it in our speech X and O

HOPE YOU WILL LIKE IT

HERE is the link of it

http://www.geocities.com/malsobaiei/Project5.zip

-------------

I am workin on some programs and inshallah when i get done of it , i will upload it in here just to get the most benifical thing to our brothers in this fourm

if you've any qustions email me at

MALSOBAIEI@YAHOO.COM
Your Brother Mathkar Alsobaiei


الرجل الذي لا رأي له . رأسه كمقبض الباب يستطيع أن يديره كل من يشاء ..!!!
رد مع اقتباس
 
 
غير متصل
 رقم المشاركة : ( 2 )
الهلال
عضو نشط
رقم العضوية : 1248
تاريخ التسجيل : 03 - 06 - 2004
الدولة :
العمر :
الجنس :
مكان الإقامة :
عدد المشاركات : 56 [+]
آخر تواجد : [+]
عدد النقاط : 10
قوة الترشيح : الهلال is on a distinguished road
الأوسمـة
بيانات الإتصال
آخر المواضيع

التوقيت
رد : برامج من برمجتي بلغة ال ++c

كُتب : [ 03 - 06 - 2004 ]

الله يســــــــــــــــــــــــــــــــــــــــــــــــ ــــــــااااااااااااااامحك يالعويــــــــــــــــــــــــــــــــــــــــــــ ـــــد

ترررررررررررررررررجم ياااااااخي .

مع التحية .

رد مع اقتباس
 
 
غير متصل
 رقم المشاركة : ( 3 )
ولدالوجيرب
عضو مميز
رقم العضوية : 1173
تاريخ التسجيل : 08 - 05 - 2004
الدولة :
العمر :
الجنس :
مكان الإقامة :
عدد المشاركات : 782 [+]
آخر تواجد : [+]
عدد النقاط : 10
قوة الترشيح : ولدالوجيرب is on a distinguished road
الأوسمـة
بيانات الإتصال
آخر المواضيع

التوقيت
رد : برامج من برمجتي بلغة ال ++c

كُتب : [ 04 - 06 - 2004 ]

اخوي العويد



انا يالله خذيت شهاده الثانوي



وكله بسب النجليزي




لايكون قاعد تسب فينا وانا ماندري

رد مع اقتباس
 
إضافة رد


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

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

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

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

المواضيع المتشابهه
الموضوع كاتب الموضوع المنتدى مشاركات آخر مشاركة
برامج مجا نيه للاسهم دسمان بن مشلهب منتدى المال والأعمال 0 01 - 08 - 2006 23:22
أمــر خطير ويجب الأنتبا ه له اللهم اني بلغت اللهم فاشهد عيسى السبيعي المنتدى المـفـتـوح 0 22 - 07 - 2006 01:40
مكتبة برامج المستــحــيـــل البرامج المجانية والكمبيوتر 4 21 - 09 - 2005 21:16
هذا درس لغير الناطقين بلغة اهل الرياض وضواحيها بن براك المنتدى المـفـتـوح 5 06 - 07 - 2003 23:51


الساعة الآن 10:18.


Powered by vBulletin® Version 3.8.11, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd. www.sobe3.com
جميع المشاركات تعبر عن وجهة كاتبها ،، ولا تتحمل ادارة شبكة سبيع الغلباء أدنى مسئولية تجاهها