Guest User

Untitled

a guest
Feb 18th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public class cos
  2. {
  3. private String x;
  4. public cos(String n) {
  5. x = n;
  6. }
  7. public String returnExpression() {
  8. return "-sin(" + x + ")";
  9. }
  10. }
Add Comment
Please, Sign In to add comment