Java tutorial | دروس جافا 👨🏻‍🏫
2.3K subscribers
87 photos
81 videos
29 files
53 links
حبيت اشاركم كل معرفتي في الجافا ولغات اخرى فسويت هذه القناة
اتمنى أن تعود بالمنفعة عليكم🌹
لطلب حل تكاليف أو مشاريع تواصل معي على

Telegram: @abdu01010

Whatsapp: https://wa.me/967783399063

كما نقدم خدمات تسوقية في القناة مدفوعة الاجرة
..............
Download Telegram
4⃣ Association
Indicates that a property of a class holds a reference to an instance (or instances) of another class .
Association is the most commonly used relationship between a class and a class, which means that there is a connection between one type of object and another type of object. Combinations and aggregations also belong to associative relations , but relations between classes of affiliations are weaker than the other two.
There are four kinds of associations : two-way associations , one-way associations , self-association , and multiple-number associations .
For example: cars and drivers, one car corresponds to a particular driver, and one driver can drive multiple cars.


#classes_relationship
#Java_Level_2
————————————————
📍Channel:
@java_tutorial0101
❤‍🔥1
📌 توضيح أكثر للموضوع

#classes_relationship
#Java_Level_2
————————————————
📍Channel:
@java_tutorial0101
❤‍🔥1👍1
📌 توضيح أكثر للموضوع

#classes_relationship
#Java_Level_2
————————————————
📍Channel:
@java_tutorial0101
❤‍🔥1
public class Pattern {
public static void main(String[] args) {
int row=5;
for (int i = 0; i < row; i++) {
for (int j = 0; j < row-i; j++) {
System.out.print(" ");
}
for (int j = 0; j <=i; j++) {
System.out.print("* ");
}
System.out.println();
}
}
}
#Java_Level_2
//————————————————-
// Telegram channel:@java_tutorial0101
2👍2
موقع رهيب جدا في ترجمة الملفات

https://www.matecat.com

————————————————
#translate
📍Channel:
https://t.me/java_tutorial0101
👍3❤‍🔥2🔥1
قم بكتابة كود جافا لهذا المخرج👨🏻‍🏫
————————————————
📍Channel:
https://t.me/java_tutorial0101
Java tutorial | دروس جافا 👨🏻‍🏫
الجواب🔥 ———————————————— 📍Channel: https://t.me/java_tutorial0101
import java.util.Scanner;
public class Pattern {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("Input number to print a diamond of asterisks: ");

int n = input.nextInt();
//print Triangle
for (int i = 1; i <= n-1; i++) {
for (int j = n - i; j > 0; j--) {
System.out.print(" ");
}

for (int k = 1; k <= i ; k++) {
System.out.print("* ");
}
System.out.println();
}
//print revers Triangle
for (int i = 0; i < n; i++) {

for (int j = 0; j < i; j++) {
System.out.print(" ");
}

for (int k = i; k < n; k++) {
System.out.print("* ");
}

System.out.println();
}
}
}

// Telegram channel:@java_tutorial0101
4👍4
تجميعات عملي برمجة 1.pdf
2.8 MB
جازان
-------‐------------------------
T_me Channel:@java_tutorial0101
4
This media is not supported in your browser
VIEW IN TELEGRAM
آليه عمل نظام التشغيل windows
-------‐------------------------
T_me Channel:@java_tutorial0101
This media is not supported in your browser
VIEW IN TELEGRAM
أنواع الدالة بشكل مختصر
#method

#Java_Level_1
------------------------------------
Channel: @java_tutorial0101
2👍1
Java tutorial | دروس جافا 👨🏻‍🏫
Photo
Function of String.pdf
653.6 KB
ملخص لجميع دوال String في java مع مثال لكل دالة
#String
#Java_Level_1
————————————————
📍TeleChannel: @java_tutorial0101
❤‍🔥32👌1
ايش اللي تفضله عن نفسك عند مذاكرة المواد
Anonymous Poll
47%
ملخصات فيها اللب المفيد من المنهج
53%
فيديوهات تشرح المنهج
ايش اللي تفضله عند مشاهدة شرح موضوع معين في المنهج
Anonymous Poll
93%
فيديو مسجل مسبقا
7%
فيديو مباشر على الزوم او غيره...
6