Skip to content

Instantly share code, notes, and snippets.

@dariogabriel113
Last active June 30, 2018 04:32
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/cbf167111341a4a9ef4d7bf08f76b934 to your computer and use it in GitHub Desktop.
Save dariogabriel113/cbf167111341a4a9ef4d7bf08f76b934 to your computer and use it in GitHub Desktop.
public class TestaLaco2 {
public static void main(String[] args) {
for (int linha = 0; linha < 10; linha++) {
for (int coluna = 0; coluna <= linha; coluna++) {
System.out.print("*");
}
System.out.println();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment