Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1.     class Triangle
  2.     {
  3.         int height;
  4.         int width;
  5.  
  6.         public Triangle(int _width, int _height)
  7.         {
  8.             height = _height;
  9.             width = _width;
  10.         }
  11.  
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement