Main public logs
Appearance
Combined display of all available logs of Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 16:24, 21 November 2022 Kangtain talk contribs created page Pemrograman Berorientasi Obyek:Perulangan di JAVA (Created page with "=== Perulangan While === <syntaxhighlight lang="java" line="1"> public class MyClass { public static void main(String[] args) { int i = 0; while (i < 5) { System.out.println(i); i++; } } } </syntaxhighlight> ==== Ketika dijalankan hasilnya ==== 0 1 2 3 4 Perulangan For public class MyClass { public static void main(String[] args) { for (int i = 0; i < 10; i++) { if (i == 4) { break; } System.out.println(i); } }...") Tag: Visual edit