Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1.         static void Main(string[] args)
  2.         {
  3.             int a = 1;
  4.             int b = 2;
  5.             int c = 3;
  6.  
  7.  
  8.             Punkt Px = new Punkt(a, b, c);
  9.             Punkt Py = new Punkt(a, b, c);
  10.             Odcinek odcinek = new Odcinek(Px,Py);
  11.  
  12.             Console.ReadKey();
  13.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement