Advertisement
sergAccount

Untitled

Jan 23rd, 2021
1,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.06 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package javaapplication21;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Test {
  13.    
  14.     // main + tab
  15.     public static void main(String[] args) {
  16.         // Square
  17.         Square q1; // q1 - переменная типа Square
  18.         Square q2;              
  19.         // new - оператор для создания объекта
  20.         Square q3 = new Square(10, 10, 100);                
  21.         Square q4 = new Square(10, 10, 100);                
  22.         Square q5 = new Square(100, 100, 200);    
  23.         // используем методы класса Square
  24.         int x1 = q3.getX();
  25.         System.out.println("x1=" + x1);
  26.         // выводи инф-ю для объекта q5
  27.         System.out.println("q5.x1=" + q5.getX());
  28.         System.out.println("q5.y1=" + q5.getY());
  29.         System.out.println("q5.a="  + q5.getA());        
  30.     }    
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement