Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy Markdown
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);
}
}