Varasku

zad 2 czesc 3

Oct 24th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package pakiet1;
  7.  
  8. /**
  9. *
  10. * @author Student
  11. */
  12. public class UtilClass {
  13. public static int obliczOdleglosc(int x1, int y1, int x2, int y2)
  14. {
  15. PointKY point1 = new PointKY(x1,y1);
  16. PointKY point2 = new PointKY(x2,y2);
  17. int distance = point1.calculateDistance(point2);
  18. return distance;
  19.  
  20. }
  21.  
  22.  
  23. }
Add Comment
Please, Sign In to add comment