ch
Feedback
جافا Java

جافا Java

前往频道在 Telegram

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

显示更多
6 178
订阅者
-624 小时
-287
-6930
吸引订阅者
八月 '26
八月 '26
+34
在0个频道中
七月 '26
+51
在0个频道中
Get PRO
六月 '26
+52
在0个频道中
Get PRO
五月 '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个频道中
日期
订阅者增长
提及
频道
26 八月+3
25 八月0
24 八月+1
23 八月0
22 八月+2
21 八月+2
20 八月+3
19 八月+1
18 八月+1
17 八月+1
16 八月+1
15 八月+3
14 八月+2
13 八月+2
12 八月+1
11 八月0
10 八月0
09 八月0
08 八月0
07 八月+1
06 八月+2
05 八月+1
04 八月+3
03 八月+1
02 八月+3
01 八月0
频道帖子
Choose your answer:
Anonymous voting

2
❓ تمرير المصفوفات للميثود: ماذا يُطبع؟ 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]);
77
3
Choose your answer:
152
4
❓ 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); }
136
5
Choose your answer:
185
6
❓ هل a == b صحيح؟ Is a == b true?String a = new String("hi"); String b = "hi"; System.out.println(a == b);
159
7
Choose your answer:
188
8
❓ ما قيمة 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);
163
9
Choose your answer:
228
10
❓ هل يعدّل for-each عناصر المصفوفة؟ Does for-each modify elements?int[] a = {1, 2, 3}; for (int x : a) { x *= 2; } System.out.println(a[1]);
199
11
Choose your answer:
231
12
❓ كيف تطبع طول المصفوفة؟ How do you print the array length?int[] a = {1, 2, 3, 4}; System.out.println( /* ? */ );
207
13
Choose your answer:
241
14
❓ أي 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);
229
15
Choose your answer:
241
16
❓ ما ناتج السويتش بدون 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'); }
231
17
Choose your answer:
243
18
❓ ما مجموع الأعداد من 1 إلى 3؟ What does this loop print?int sum = 0; for (int i = 1; i <= 3; i++) { sum += i; } System.out.println(sum);
235
19
Choose your answer:
263
20
❓ ما ناتج الكود التالي؟ What is the output of the following code?int x = 5; if (x > 3) x++; if (x == 6) x += 2; System.out.println(x);
241