Skip to content

Commit

Permalink
Improved code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
NataBurtnyk committed Nov 27, 2024
1 parent 706311d commit 2ba6d04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/core/basesyntax/Application.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
public class Application {
public static void main(String[] args) {
Lottery lottery = new Lottery();
for (int i = 1; i <= 3; i++) {
System.out.println(lottery.getRandomBall());
for (int i = 1; i <= 3; i++) {
System.out.println(lottery.getRandomBall());
}
}
}

0 comments on commit 2ba6d04

Please sign in to comment.