Advertisement
EmhyrVanEmrias

java1lab1

Oct 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.68 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 javaapplication1;
  7.  
  8. /**
  9.  *
  10.  * @author Powerzak
  11.  */
  12. public interface IZbior {
  13.     public void wczytaj(String filename);
  14.  public void wypisz();
  15.  public void dodaj(int nowy);
  16.  public void usun(int element);
  17.  public boolean czyZawiera(int element);
  18.  public boolean czyRowne(IZbior drugi);
  19.  public IZbior suma(IZbior drugi);
  20.  public IZbior roznica(IZbior drugi);
  21.  public IZbior przeciecie(IZbior drugi);
  22.  public IZbior roznicaSymetryczna(IZbior drugi);
  23.  public int[] getTab();
  24.    
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement