المشاركات

عرض الرسائل ذات التصنيف جافا

كتاب برمجة الآندرويد بالإنجليزية "Android Developer Fundamentals Course

صورة
Android Developer Fundamentals Course – Concepts Android Developer Fundamentals is a training course created by the Google Developer Training team. You learn basic Android programming concepts and build a variety of apps, starting with Hello World and working your way up to apps that use content providers and loaders. Android Developer Fundamentals prepares you to take the exam for the Associate Android Developer Certification. This course is intended to be taught in a classroom, but all the materials are online, so if you like to learn by yourself, go ahead! Prerequisites Android Developer Fundamentals is intended for new and experienced developers who already have Java programming experience and now want to learn to build Android apps. Course materials The course materials include: This concept reference, which teaches subjects you need to learn to complete the exercises in the practical workbook. Some lessons are purely conceptual and do not have an ac...

💗نظام إدارة المستشفيات مفتوح المصدر (بالجافا + أكسيس ) java +Access 💗

صورة
كتب هذا المشروع بإستخدام java IDE Netbeans 7.3.1 and MS Access 2010 وهذا المشروع مفيد جدا للمبتدئين الذين يريدون تعلم برمجة قواعد البيانات في جافا الميزات الرئيسية: 1. دخول الممرضات 2. دخول الأطباء 3. المريض   3.1. تسجيل   3.2. الخدمات   3.3. وقت الدخول للغرفه.   3.4. وقت مغادرة الغرفة   3.5. الفواتير 4. تخصيص التلقائي وإلغاء تخصيص من غرفة أو سرير من جناح معلومات تسجيل الدخول : Login Information : Username- admin Password -12345 من أجل تشغيل المشروع، يجب عليك أولا ربط قاعدة البيانات الخاصة بك إلى the DataSources (ODBC). تعليمات: 1.Open Control Panel 2 Click Administrative Tools 3.Open DataSources(ODBC) 4.Click the Add button the select Microsoft Access Driver(*mdb,*accdb) the click Finish 5.On the Dialog window, fill the Data Source Name field with the name of the database, and that is HMS_DB. 6.Click the select button to browse the database and click OK بعد الانتهاء من ذلك. للاتصال بمبرمج هذا البرنامج Raj20...

❤ كتاب مدخل إلى برمجة الشبكات بالجافا❤

صورة
An Introduction to Network Programming with Java عدد صفحات الكتاب :389 نوع الملف : pdf حجم الملف : 3.6 ميجا بايت حمله الأن من الرابط الأول أو الرابط الثاني ↓ الرابط الأول الرابط الثاني لا تنسى الإشتراك بالمدونه ليصلك الكتب على الإيميل أسفل الصفحه طريقة التحميل من الرابط الأول

كود بالجافا لتحويل الأرقام إلى كلمات ؟

صورة
* Program to convert a number into words. */ import java.io.*; class numerals2words { public static void main(String args[]) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); numerals2words call = new numerals2words(); System.out.print("Enter a number : "); int n = Integer.parseInt(br.readLine()); call.convert(n); } public void convert(int n) { int c; if(n!=0) { c = n%10; convert(n/10); num2words(c); } } public void num2words(int n) { String words[] = {"ZERO","ONE","TWO","THREE","FOUR","FIVE","SIX","SEVEN","EIGHT","NINE "}; System.out.print(words[n] +" "); } } /** * ALGORITHM : * --------- * 1. Start * 2. Accept a number from the user. * 3. Extract a digit fro...

دورة الجافا للأستاذ المبدع سعد الضبي

صورة
دورة المبدع سعد الضبي في لغة الجافا تفضل حمل التطبيق من هنا https://play.google.com/store/apps/details… تفضل أولاً بتحميل الكتاب من هذا الرابط  http://www.mediafire.com/file/hn37ldzhhd76666/f1to10.pdf  ولمشاهدة الفيديوهات ثمنا بترتيبها لك حسب رقم الدرس من الدرس الأول حتى الدرس الثامن طبعاً الدروس والكتاب يتم تحديثه بعد كل درس # دورة_الجافا  على قناة البرمجة الدرس الأول (تنزيل الأدوات المطلوبة لبرنامج الجافا NetBeans + مقدمة عن الجافا ) https://goo.gl/6Bfn0D الدرس الثاني (التعرف على هيكلية برنامج الجافا وكتابة برنامجك الأول ) https://goo.gl/nfIhUR الدرس الثالث المتغيرات في الجافا https://goo.gl/6mwdHC الدرس الرابع طريقة أدخال البيانات في الجافا مع حزمة الإدخال Util.Scanner https://goo.gl/qM39VH # الدرس_الخامس في هذا الدرس سوف تتعرف على الاتي 1- كيفية استخدام if - else الشرطية 2- كيفية مقارنة السلاسل النصية باستخدام الدالة equal وسوف تشاهد مثال عن كيفية مطابقة اسم المستخدم وكلمة المرور https://goo.gl/18GLyR السادس حتى الدرس الثامن الدرس السادس...

❤️كتاب الجافا سؤال وجواب❤️

صورة
عن الكتاب: هذا الكتاب تجميع لبعض الأسئلة المهمة في الجافا والتي تفيد المبتدئين والمتقدمين في مراجعة بعض المفاهيم والمصطلحات المهمه في لغة الجافا . تأليف:  سعد رضا العنزي عدد الصفحات : 143 للتحميل إضغط على الزر أسفل ↓ الرابط الأول الرابط الثاني طريقة التحميل من الرابط الأول