اختاروا نوع التحديات اللي بدكم ننشرها عالقناة
Anonymous Poll
28%
Design Patterns
72%
Problems Solving
❤5👍2🤩1
Write a program to convert any number from binary to decimal
🧩 Share this Challenge👇 https://news.1rj.ru/str/X_Zecoder_X/22
🧩 Share this Challenge👇 https://news.1rj.ru/str/X_Zecoder_X/22
🔥4👍1
Write a program to convert numbers from decimal to binary
🧩 Share this Challenge👇
https://news.1rj.ru/str/X_Zecoder_X/23
🧩 Share this Challenge👇
https://news.1rj.ru/str/X_Zecoder_X/23
🔥1
ماذا تعرف عن خوارزمية Fibonacci وأين تكمن فائدتها في مجال البرمجة.
for (int i = 0, a=1, b=0, c=0 ; i<=10 ; i++)
{
Write ( $ "{c} " ) ;
c = a + b ;
a = b ;
b = c ;
}
الكود بلغة #C
for (int i = 0, a=1, b=0, c=0 ; i<=10 ; i++)
{
Write ( $ "{c} " ) ;
c = a + b ;
a = b ;
b = c ;
}
الكود بلغة #C
👍7❤2🤔1