Guest User

Untitled

a guest
Oct 20th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. struct punto {
  2. punto(int x1, int y1) : x(x1), y(y1) {}
  3.  
  4. int x;
  5. int y;
  6. };
Add Comment
Please, Sign In to add comment