Advertisement
Guest User

Untitled

a guest
Dec 16th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. double eucD(int x1,int x2,int y1,int y2)
  2. {
  3. return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2);
  4. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement