-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create base logic #1690
base: master
Are you sure you want to change the base?
create base logic #1690
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great job on implementing the solution! 🎉 The code meets the task requirements and follows good practices. Just make sure to fix the missing semicolons in the Application.java
file to avoid compilation errors. Keep up the good work! 😊
✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨
@@ -2,6 +2,8 @@ | |||
|
|||
public class Application { | |||
public static void main(String[] args) { | |||
// create three balls using class Lottery and print information about them in console | |||
System.out.println(new Lottery().getRandomBall()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a missing semicolon at the end of this line. Add a semicolon to terminate the statement properly.
@@ -2,6 +2,8 @@ | |||
|
|||
public class Application { | |||
public static void main(String[] args) { | |||
// create three balls using class Lottery and print information about them in console | |||
System.out.println(new Lottery().getRandomBall()); | |||
System.out.println(new Lottery().getRandomBall()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a missing semicolon at the end of this line. Add a semicolon to terminate the statement properly.
// create three balls using class Lottery and print information about them in console | ||
System.out.println(new Lottery().getRandomBall()); | ||
System.out.println(new Lottery().getRandomBall()); | ||
System.out.println(new Lottery().getRandomBall()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a missing semicolon at the end of this line. Add a semicolon to terminate the statement properly.
No description provided.