‏إظهار الرسائل ذات التسميات برمجة. إظهار كافة الرسائل
‏إظهار الرسائل ذات التسميات برمجة. إظهار كافة الرسائل
الجمعة، 1 يناير 2016

WebSite 2016

في وقت محدد يحصل تغيير بالصفحة ;-) الكود الخاص بالساعة بالجافا سكربت ;-) لاستمرر عرض الساعة مع كل ثانية :-         <script type="text/javascript">  function startTime()         {         &
الجمعة، 16 أكتوبر 2015

تجربتي مع احد مشاريعي :p

موقع تواصل للدراسة الكترونية بعيدا عن الطرق الروتنية الممللة بالدراسة و باساليب مبتكرة و ممتعة  فكرة اشتغلت عليها لمدة شهر ونص و انتهت عند ستارت اب ويكند مو استسلام وانما بحاجة للابداع و افكار مختلفة تصنع الفرق الجوهري استسلمت بانها فكرة مطروحة سابقا و شكد ما ات
الثلاثاء، 23 يونيو 2015

برنامج C# يحتوي على كل الاساسيات ALL C# in program

برنامج متكامل يحتوي على كل الاساسيات لتعلم #C و اصلا هو مصمم ب C# ,طبعا هل فكرة جت لي اثناء الامتحان الا انه ما كدرت اكملها بالامتحان لضيق الوقت والان بالعطلة كملتها و اخذت وقت شوية طويل المهم الفكرة بصورة عامة كل موضوع يحتوي على التنفيذ و الكود في نفس الواجهة ممل
السبت، 28 فبراير 2015

Design First Application of Android

اول تطبيق لهواتف الذكية من تصميمي يتيح لك التحكم من نظام الاندرويد بالاردينوا عبر البلوتوث لتحكم بالاجهزة مختلفة  فهنا تم التحكم بسيارة صغيرة بمختلف الاتجاهات و توقف  بالاضافة الى ضوء تشغيل و اطفاء في حال اردت تحميل التطبيق من هنا  معلومات عند برمجة
الأحد، 7 ديسمبر 2014

اصنع الة حاسبة للعمليات الحسابية خاص بك

لتحميل عبر الرابط :- Calculator_Ahmed وذلك عبر كتابة  كود سي شارب :-     char symbol;         int a;         private void button1_Click(object sender, EventArgs e)        
السبت، 25 أكتوبر 2014

++Scheduler FIFO in c

1- find wait time  #include "stdafx.h" #include<iostream> #include<conio.h> using namespace std; void main() { float b[4]; float w=0; float p1=0, p2, p3, p4; for (int i = 0; i < 4; i++) { cout << "enter the burst time for process: "; cin >> b[i]; }
الجمعة، 16 مايو 2014

quick_sort

#include "stdafx.h" #include<iostream> #include<conio.h> using namespace std; class quicksort { public: int no_of_elements; int elements[10]; public: void getarray(); void sortit(int[], int, int); void partition(int[], int, int,int &); void display(); }; void quicksort::getarray(

merge_sort

#include "stdafx.h" #include<iostream> #include<conio.h> using namespace std; void sort(int left, int right); void merge(int left, int mid, int right); int a[9] = { 75, 40, 10, 90, 50, 95, 55, 15, 65}; int tmp[9]; void sort(int left, int right) { if (left < right) { int mid = (left
الثلاثاء، 1 أبريل 2014

hashtable in c++

// record taqble data base.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<iostream> #include<conio.h> #define null -1 using namespace std; struct emprecord { int empcode; }; class hashtable { private: emprecord *hasharray; int arraysize; pu
الاثنين، 24 مارس 2014

priority queues in heap

// ConsoleApplication46.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<iostream> #include<conio.h> #include<string> #define maxsize 10 using namespace std; struct node { string data; int prn; }; class heap_priority { node a[maxsize];
الأحد، 16 مارس 2014

heap (complete binary tree)

// Heap.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<iostream> #include<conio.h> #define max 7 using namespace std; class heap { private: int  a[max]; int count; public: heap() { count = 0; } boo