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

HW1_done #14

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

public class Task6 {
public static double calculateS(double x) {
return 0d;
}
return (1 + (x * (((Math.pow(x, 2) *x) *x) / (2 * (3*2) * (4*3*2)))));
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not correct solution.
Try to solve it step-by-step.
Also you can take look at other students solutions.


}


public static double calculateZ(double x, double y) {
return 0d;

return Math.sin(Math.pow(x, 3)) + Math.pow(Math.cos(y), 2);
}
}