Created
June 20, 2020 19:00
-
-
Save LaurentiuGabriel/8d25b96f95c21b25dc8908d26b03b353 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
| public class Application { | |
| public static void main(String[] args) { | |
| for(int i = 0; i < 5; i++){ | |
| System.out.println(i); | |
| for(int k = 0; k < 5; k++){ | |
| System.out.println("This is the inner loop"); | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment