Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. package pac;
  2.  
  3. public class Main {
  4. public static void main(String[] alphabet) {
  5. Rectangle rec1 = new Rectangle(5, 1);
  6.  
  7. System.out.println(rec1.getRectangle());
  8. System.out.println("Ширина: " + rec1.getWidth() + "см");
  9. System.out.println("Высота: " + rec1.getHeight() + "см");
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement