اسئله برمجيه Programming Questions
الذهاب إلى القناة على Telegram
تعلم البرمجه من الاسئله 💖 ..... قنواتنا 》》 @Arab_Victory قناتنا علئ يوتيوب 》》https://youtube.com/channel/UCDmvenVK0qPY5MlWT6fT82Q . موقعنا علئ الويب 》》https://python-arabs.blogspot.com للتبادل : @DrdataY
إظهار المزيد379
المشتركون
لا توجد بيانات24 ساعات
لا توجد بيانات7 أيام
لا توجد بيانات30 أيام
أرشيف المشاركات
Repost from DrData | Telegram Bots
لانشاء حقل البيانات لكتابة النصوص الكبيرة نستخدم الوسم ....
Repost from DrData | Telegram Bots
لتحديد اكثر من عمود في الجدول لتنسيقها مع بعض نستخدم الوسم ....
Repost from DrData | Telegram Bots
يمكن تقسيم عناصر الادخال في النماذج الكبيرة الئ اقسام يوضع كل منها في اطار مستقل نستخدم الوسم ....
#Python
a = [0 , 1 , 2 , 3 ] i = -2 for i not in a : print(i) i += 1
#Python
elements = [0 , 1 , 2] def incr(x): return x+1 print(list(map(incr,elements)))
//c++
#include
using namespace std; int main() { int i = 0; while (i++ < 3) cout << i; }
//c++
#include
using namespace std; int main() { int a = 3, b = 5; int t = a; a = b; b = t; cout << a << "\n" << b; }
//c++
#include
using namespace std; int main() { int a = 1; if (a--) cout << "True"; if (a++) cout << "False"; }
//c++
#include
using namespace std; int main() { int x = 5 * 2 / 8 + 10; cout << x; return 0; }
//c++
#include
using namespace std; int main() { int size = 8; int arr[size]; if (arr[5]) cout << "Good"; else cout << "Learning"; return 0; }
//c++
#include
using namespace std; int main() { int c , a = 1 , b = 2; c = a++ + ++b; cout << c << "\n" << a << "\n" << b; }
