كتب أساسيات برمجة كائنية التوجة 👆
Object oriented programming (OOP)
رح يستفيد منها الجميع لأن نهج OOP نهج واحد لكل اللغات اللتي تدعم هذا النوع مثل
C++ , java , بايثون
وغيرها من لغات البرمجة ؛
Object oriented programming (OOP)
رح يستفيد منها الجميع لأن نهج OOP نهج واحد لكل اللغات اللتي تدعم هذا النوع مثل
C++ , java , بايثون
وغيرها من لغات البرمجة ؛
❤3👍3
.👆👆👆.
العديد من الأسئلة والأكواد المحلولة
وغير محلولة قوم بتطبيقها ومحاولة
فهمها سوف تستفيد منها .
العديد من الأسئلة والأكواد المحلولة
وغير محلولة قوم بتطبيقها ومحاولة
فهمها سوف تستفيد منها .
👍8
" الترم الجاي بذاكر أول ب أول "
-يلا شباب ذاكروا أول ب أول
حملوا كورسات
-طبقوا كثير وكثير وكثير
الله يوفقنا واياكم لما فيه
الخير والصلاح في الدنيا والآخرة .
-يلا شباب ذاكروا أول ب أول
حملوا كورسات
-طبقوا كثير وكثير وكثير
الله يوفقنا واياكم لما فيه
الخير والصلاح في الدنيا والآخرة .
❤18🔥5😁3
السلام عليكم
تواصل معي عدة طلاب
وقالوا أن البوت أرسل لهم
رسائل رابط البوت مخترق
احذروا
لا احد يدخل أي رابط .
تواصل معي عدة طلاب
وقالوا أن البوت أرسل لهم
رسائل رابط البوت مخترق
احذروا
لا احد يدخل أي رابط .
👍9
تعلم البرمجة بلغة ++C
س 1 ) أكتب برنامج يطبع 50 كلمه مرور عشوائية تتكون كلمة المرور من 20 خانه وتحتوي كل كلمه مرور على حرف كابيتل و اسمول و رقم #يرجى المشاركة من الجميع وكتابة الكود وإرساله هنا :- @arssfh69BOT ❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️❤️
تعلم البرمجة بلغة ++C:
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
int main() {
srand(time(0)); // Seed the random number generator.
string password; // Create a string to hold the password.
for (int i = 0; i < 100; i++) { // Loop 100 times.
for (int j = 0; j < 20; j++) { // Generate 20 characters per password.
int randomNumber = rand() % 3; // Generate a random number between 0 and 2.
if (randomNumber == 0) { // If the random number is 0, generate a capital letter.
char c = 'A' + rand() % 26; // Generate a random capital letter between A and Z.
password += c; // Append the character to the string.
} else if (randomNumber == 1) { // If the random number is 1, generate a small letter.
char c = 'a' + rand() % 26; // Generate a random small letter between a and z.
password += c; // Append the character to the string.
} else if (randomNumber == 2) { // If the random number is 2, generate a number.
char c = '0' + rand() % 10; // Generate a random number between 0 and 9.
password += c; // Append the character to the string.
}
}
cout << "Password " << i+1 << ": " << password << endl;// Print out each generated password on its own line in the console window.
password = "";// Reset the string for next loop iteration
}
return 0;// End program execution with no errors or warnings.
}
#include <iostream>
#include <string>
#include <cstdlib>
#include <ctime>
using namespace std;
int main() {
srand(time(0)); // Seed the random number generator.
string password; // Create a string to hold the password.
for (int i = 0; i < 100; i++) { // Loop 100 times.
for (int j = 0; j < 20; j++) { // Generate 20 characters per password.
int randomNumber = rand() % 3; // Generate a random number between 0 and 2.
if (randomNumber == 0) { // If the random number is 0, generate a capital letter.
char c = 'A' + rand() % 26; // Generate a random capital letter between A and Z.
password += c; // Append the character to the string.
} else if (randomNumber == 1) { // If the random number is 1, generate a small letter.
char c = 'a' + rand() % 26; // Generate a random small letter between a and z.
password += c; // Append the character to the string.
} else if (randomNumber == 2) { // If the random number is 2, generate a number.
char c = '0' + rand() % 10; // Generate a random number between 0 and 9.
password += c; // Append the character to the string.
}
}
cout << "Password " << i+1 << ": " << password << endl;// Print out each generated password on its own line in the console window.
password = "";// Reset the string for next loop iteration
}
return 0;// End program execution with no errors or warnings.
}
❤5🔥3👍1👎1
اخواني وزملائي ارجوا منكم
الدعاء لصديقي استشهد في
يومنا هذا حفظكم الله ورعاكم
ولا اراكم الله شرُ فيكم ولا اهلكم
ومن تحبوووووووون 💔💔🥺
الدعاء لصديقي استشهد في
يومنا هذا حفظكم الله ورعاكم
ولا اراكم الله شرُ فيكم ولا اهلكم
ومن تحبوووووووون 💔💔🥺
💔26👍3