Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Zbior;
- import java.io.File;
- import java.io.FileNotFoundException;
- import java.util.Scanner;
- public class Zbiory {
- public int[] tab = new int[100];
- public static int n = 1;
- /*
- MADE BY SYLV3RWOLF
- MADE BY SYLV3RWOLF
- MADE BY SYLV3RWOLF
- MADE BY SYLV3RWOLF
- MADE BY SYLV3RWOLF
- MADE BY SYLV3RWOLF
- MADE BY SYLV3RWOLF
- działają metody z interface:
- public void wprowadz();
- public void wypisz();
- public void dodaj(int nowy);
- public void usun(int element);
- public int rozmiar();
- public boolean czyZawiera(int element);
- public void wczytaj(String filename);
- */
- public void wprowadz()
- {
- System.out.println("Podawaj liczby do "+n);
- for(int i=0;i<n;i++)
- {
- Scanner skaner2=new Scanner(System.in);
- tab[i] = skaner2.nextInt();
- }
- }
- public void dodaj(int nowy) {
- tab[n] = nowy;
- n++;
- }
- public void usun(int element)
- {
- if (element!=n)
- {
- tab[element]=tab[n-1];
- n--;
- }
- }
- public boolean czyZawiera(int element)
- {
- for(int i=0;i<n;i++)
- { if (element == tab[i])return true;
- } return false;}
- public void wypisz()
- {
- System.out.println("Twoja tablica:");
- for(int i=0; i<n;i++)
- {
- System.out.println("Index["+i+"] zawiera liczbę ["+tab[i]+"]");
- }
- }
- public int rozmiar() {
- return n;
- }
- public void wczytaj(String filename) {
- File plik = new File(filename);
- try{
- Scanner sc = new Scanner(plik);
- while(sc.hasNextInt()) {
- int licz = sc.nextInt();
- if (czyZawiera(licz) == false) {
- dodaj(licz);
- }
- }
- } catch (FileNotFoundException ex) {
- System.out.println("Nie znaleziono pliku!");
- }
- }
- public static void main(String[] args)
- {
- // System.out.println("Ile elementów chcesz dodac?");
- Scanner skaner=new Scanner(System.in);
- // n = skaner.nextInt();
- Zbiory z = new Zbiory();
- System.out.println("Wczytano liczby z pliku!");
- z.wczytaj("zbior.txt");
- z.wypisz();
- System.out.println("Podaj liczbę, którą chcesz dodać:");
- int dodawanie = skaner.nextInt();
- z.dodaj(dodawanie);
- System.out.println("Po dodaniu elementu:");
- z.wypisz();
- System.out.println("Podaj indeks liczby, którą chcesz odjąć:");
- int odejmowanie = skaner.nextInt();
- System.out.println("Po usunięciu elementu o indeksie: "+odejmowanie);
- z.usun(odejmowanie);
- z.wypisz();
- System.out.println("Podaj liczbę, którą chcesz sprawdzić:");
- int zawiera = skaner.nextInt();
- System.out.println("Czy zawiera element: "+z.czyZawiera(zawiera));
- System.out.println("Rozmiar tablicy to: "+z.rozmiar());
- }
- }
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package Zbior;
- /**
- *
- * @author MaxSylverWolf
- */
- interface IZbior {
- public void wprowadz();
- public void wypisz();
- public void dodaj(int nowy);
- public void usun(int element);
- public int rozmiar();
- public boolean czyZawiera(int element);
- public void wczytaj(String filename);
- public boolean czyRowne(IZbior drugi);
- public IZbior suma(IZbior drugi);
- public IZbior roznica(IZbior drugi);
- public IZbior przeciecie(IZbior drugi);
- public IZbior roznicaSymetryczna(IZbior drugi);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement