Skip to content

Instantly share code, notes, and snippets.

@jonathasborges1
Created September 13, 2022 14:20
Show Gist options
  • Save jonathasborges1/bf9c47a637fd31c8cc0df0702b61dd3c to your computer and use it in GitHub Desktop.
Save jonathasborges1/bf9c47a637fd31c8cc0df0702b61dd3c to your computer and use it in GitHub Desktop.
letscode-aula07-lacosNumericos
public class Main {
public static void main(String[] args){
for(int i = 1; i <= 10; i++){
for(int j = 1; j <= 10; j++){
System.out.println(j + "x" + i + " = " + j * i);
}
}
}
}
@jonathasborges1
Copy link
Author

Exemplo de Tabuada de 1 a 10

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment