ch
Feedback
جافا Java

جافا Java

前往频道在 Telegram

ليس عيبًا ألا تعرف شيئًا، ولكن العيب انك لا تريد أن تتعلم

显示更多
6 285
订阅者
无数据24 小时
-177
-7130
吸引订阅者
六月 '26
六月 '26
+44
在0个频道中
五月 '26
+38
在0个频道中
Get PRO
四月 '26
+61
在0个频道中
Get PRO
三月 '26
+49
在0个频道中
Get PRO
二月 '26
+51
在0个频道中
Get PRO
一月 '26
+69
在0个频道中
Get PRO
十二月 '25
+159
在0个频道中
Get PRO
十一月 '25
+86
在0个频道中
Get PRO
十月 '25
+90
在0个频道中
Get PRO
九月 '25
+114
在0个频道中
Get PRO
八月 '25
+63
在1个频道中
Get PRO
七月 '25
+58
在0个频道中
Get PRO
六月 '25
+48
在0个频道中
Get PRO
五月 '25
+83
在2个频道中
Get PRO
四月 '25
+57
在0个频道中
Get PRO
三月 '25
+39
在0个频道中
Get PRO
二月 '25
+60
在0个频道中
Get PRO
一月 '25
+116
在1个频道中
Get PRO
十二月 '24
+168
在1个频道中
Get PRO
十一月 '24
+236
在2个频道中
Get PRO
十月 '24
+331
在1个频道中
Get PRO
九月 '24
+278
在1个频道中
Get PRO
八月 '24
+171
在1个频道中
Get PRO
七月 '24
+373
在0个频道中
Get PRO
六月 '24
+114
在1个频道中
Get PRO
五月 '24
+250
在1个频道中
Get PRO
四月 '24
+117
在0个频道中
Get PRO
三月 '24
+194
在1个频道中
Get PRO
二月 '24
+169
在0个频道中
Get PRO
一月 '24
+400
在0个频道中
Get PRO
十二月 '23
+202
在1个频道中
Get PRO
十一月 '23
+130
在0个频道中
Get PRO
十月 '23
+154
在0个频道中
Get PRO
九月 '23
+245
在0个频道中
Get PRO
八月 '23
+216
在0个频道中
Get PRO
七月 '23
+124
在0个频道中
Get PRO
六月 '23
+96
在0个频道中
Get PRO
五月 '23
+100
在0个频道中
Get PRO
四月 '23
+100
在0个频道中
Get PRO
三月 '23
+117
在0个频道中
Get PRO
二月 '23
+238
在0个频道中
Get PRO
一月 '23
+185
在0个频道中
Get PRO
十二月 '22
+201
在0个频道中
Get PRO
十一月 '22
+133
在0个频道中
Get PRO
十月 '22
+178
在0个频道中
Get PRO
九月 '22
+214
在0个频道中
Get PRO
八月 '22
+123
在0个频道中
Get PRO
七月 '22
+133
在0个频道中
Get PRO
六月 '22
+130
在0个频道中
Get PRO
五月 '22
+165
在0个频道中
Get PRO
四月 '22
+214
在0个频道中
Get PRO
三月 '22
+320
在0个频道中
Get PRO
二月 '22
+224
在0个频道中
Get PRO
一月 '22
+609
在0个频道中
Get PRO
十二月 '21
+197
在0个频道中
Get PRO
十一月 '21
+252
在0个频道中
Get PRO
十月 '21
+140
在0个频道中
Get PRO
九月 '21
+146
在0个频道中
Get PRO
八月 '21
+190
在0个频道中
Get PRO
七月 '21
+197
在0个频道中
Get PRO
六月 '21
+327
在0个频道中
Get PRO
五月 '21
+440
在0个频道中
Get PRO
四月 '21
+161
在0个频道中
Get PRO
三月 '21
+108
在0个频道中
Get PRO
二月 '21
+196
在0个频道中
Get PRO
一月 '21
+1 242
在0个频道中
日期
订阅者增长
提及
频道
28 六月0
27 六月+2
26 六月+2
25 六月+2
24 六月+2
23 六月+3
22 六月+4
21 六月+1
20 六月+2
19 六月+1
18 六月+2
17 六月+1
16 六月0
15 六月0
14 六月+1
13 六月0
12 六月+1
11 六月+1
10 六月0
09 六月+2
08 六月+1
07 六月+4
06 六月+4
05 六月+1
04 六月+1
03 六月+2
02 六月+1
01 六月+3
频道帖子
Choose your answer:
Anonymous voting

2
❓ كم عدد الزيادات؟ How many increments occur?int c = 0; for (int i = 0; i < 3; i++) { for (int j = 0; j <= i; j++) { c++; } } System.out.println(c);
70
3
Choose your answer:
144
4
❓ تأثير i++ داخل شرط while؟ Effect of i++ in while condition?int i = 0; while (i++ < 3) { } System.out.println(i);
139
5
Choose your answer:
182
6
❓ تمرير المصفوفات للميثود: ماذا يُطبع؟ Passing arrays to methods: what prints?void change(int[] arr) { arr[0] = 99; arr = new int[]{7,7,7}; } int[] x = {1,2,3}; change(x); System.out.println(x[0]);
165
7
Choose your answer:
206
8
❓ Switch على String بدون break بعد "two"؟ Switch on String (no break after "two")?String s = "two"; switch (s) { case "one": System.out.print(1); break; case "two": System.out.print(2); default: System.out.print(0); }
190
9
Choose your answer:
233
10
❓ هل a == b صحيح؟ Is a == b true?String a = new String("hi"); String b = "hi"; System.out.println(a == b);
217
11
Choose your answer:
251
12
❓ ما قيمة count بعد استخدام continue؟ What is count after using continue?int count = 0; for (int i = 0; i < 5; i++) { if (i % 2 == 0) continue; count += i; } System.out.println(count);
225
13
Choose your answer:
264
14
❓ هل يعدّل for-each عناصر المصفوفة؟ Does for-each modify elements?int[] a = {1, 2, 3}; for (int x : a) { x *= 2; } System.out.println(a[1]);
253
15
Choose your answer:
274
16
❓ كيف تطبع طول المصفوفة؟ How do you print the array length?int[] a = {1, 2, 3, 4}; System.out.println( /* ? */ );
259
17
Choose your answer:
319
18
❓ أي overload يُستدعى؟ Which overload is invoked?void print(int x) { System.out.println("int"); } void print(Integer x) { System.out.println("Integer"); } Integer n = null; print(n);
306
19
Choose your answer:
345
20
❓ ما ناتج السويتش بدون break؟ What is the output (no breaks before case 3)?int n = 2; switch (n) { case 1: System.out.print('A'); case 2: System.out.print('B'); case 3: System.out.print('C'); break; default: System.out.print('D'); }
319