Initial Commit

This commit is contained in:
2022-10-07 00:22:46 -03:00
commit bdcf6d3e1c
465 changed files with 15466 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
public class Pattern {
public static void main(String[] args) {
for (int i = 10; i > 0; i--) {
for (int j = 1; j <= i; j++) {
System.out.print('*');
}
System.out.println();
}
}
}