-
Notifications
You must be signed in to change notification settings - Fork 0
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
My hw02 #3
base: master
Are you sure you want to change the base?
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.
resolve comments
public class HomeWorkTwo { | ||
public static boolean booleanExpression(boolean a, boolean b, boolean c, boolean d) { | ||
|
||
return (a & b & !c & !d) || (!a & b & c & !d) || (!a & !b & c & d) |
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.
you can make this method more simple
} | ||
|
||
public static int leapYearCount(int year) { | ||
int counter = 0; |
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.
write:
return (year / 4) - (year / 100) + (year / 400);
} | ||
|
||
public static boolean doubleExpression(double a, double b, double c) { | ||
return Math.abs((a + b) - c) <= 1E-4; |
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.
move 1E-4 into separate static final variable in the class
No description provided.