Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package assignment3;
  2.  
  3. /**
  4. * Created by taegsu on 2016. 9. 28..
  5. */
  6.  
  7.  
  8.  
  9. public class Task1 {
  10.  
  11. private double x1;
  12. private double x2;
  13. private double y1;
  14. private double y2;
  15.  
  16. private double result;
  17.  
  18. public Task1(double xx1, double xx2, double yy1, double yy2)
  19. {
  20. x1 = xx1;
  21. x2 = xx2;
  22. y1 = yy1;
  23. y2 = yy2;
  24. }
  25.  
  26. public double getResult()
  27. {
  28.  
  29. }
  30.  
  31. public void dbp()
  32. {
  33.  
  34. }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement