Skip to content
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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

My hw02 #3

wants to merge 3 commits into from

Conversation

Oleh8
Copy link
Owner

@Oleh8 Oleh8 commented Jun 3, 2019

No description provided.

Oleh8 added 3 commits June 2, 2019 16:43
task 03 added
task 04 added
Copy link

@Sofasmile Sofasmile left a 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)

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;

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;

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants