Created
August 9, 2021 02:03
-
-
Save weikangchia/3cea9d2c0f6b2ffa372dd2942a548077 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| int i = 0; | |
| while (i < myArray.length) { | |
| System.out.println(myArray[i]); | |
| i++; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment