Advertisement
desant74268

OOPHW

Jan 15th, 2022
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. package ru.itsjava.oop.oopHW2.figure;
  2.  
  3. public class Figure {
  4.  
  5.     public void perimeter(){
  6.         System.out.println("Perimeter: ");
  7.  
  8.     }
  9.  
  10.     public void area(){
  11.         System.out.println("Area: ");
  12.  
  13.     }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement