Skip to content

Instantly share code, notes, and snippets.

@dariogabriel113
Last active June 30, 2018 04:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dariogabriel113/f883e95f25ac8411322979b6b8da1cea to your computer and use it in GitHub Desktop.
Save dariogabriel113/f883e95f25ac8411322979b6b8da1cea to your computer and use it in GitHub Desktop.
public class TestaLacos {
public static void main(String[] args) {
for (int multiplicador = 1; multiplicador <= 10; multiplicador++) {
for (int contador = 0; contador <= 10; contador++) {
System.out.print(multiplicador * contador);
System.out.print(" ");
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment