Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. private static int NumPointLePlusHaut(Point[] points)
  2. {
  3. int numPoint = 0;
  4. for (int i = 0; i < 4; i++)
  5. {
  6. if (points[i].Y < points[numPoint].Y)
  7. {
  8. numPoint = i;
  9. }
  10. }
  11. return numPoint;
  12. }
  13.  
  14.  
  15. Je connaissais pas ^^
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement