Skip to content
View saed369's full-sized avatar

Block or report saed369

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
saed369/README.md
  • 👋 Hi, I’m @saed369
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...

#include #include

using namespace std;

int main() { int count = 0; // متغير لحساب عدد الاحتمالات

// البدء من aa00 إلى zz99 for (char c1 = 'a'; c1 <= 'z'; c1++) { for (char c2 = 'a'; c2 <= 'z'; c2++) { for (int i = 0; i <= 99; i++) { string password = string(1, c1) + string(1, c2) + to_string(i); while (password.length() < 5) { // ملء الخانات الفارغة بـ 0 password = "0" + password; } cout << password << endl; // طباعة كلمة السر count++; // تعديل العدد الحالي للاحتمالات } } }

cout << "Number of possibilities: " << count << endl; // طباعة العدد الإجمالي للاحتمالات

return 0; }

Popular repositories Loading

  1. saed369 saed369 Public

    Config files for my GitHub profile.