Skip to content

Instantly share code, notes, and snippets.

@LaurentiuGabriel
Created June 20, 2020 19:00
Show Gist options
  • Select an option

  • Save LaurentiuGabriel/8d25b96f95c21b25dc8908d26b03b353 to your computer and use it in GitHub Desktop.

Select an option

Save LaurentiuGabriel/8d25b96f95c21b25dc8908d26b03b353 to your computer and use it in GitHub Desktop.
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