Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package Zbior;
- //bez reszty, może potem dorobię
- import java.util.Scanner;
- public class Zbiory {
- public int[] tab = new int[100];
- public static int n;
- 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)
- {
- int ktora = element;
- if (ktora!=n)
- {
- tab[ktora]=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(i + " --- " + tab[i]);
- }
- }
- public int rozmiar() {
- return n;
- }
- 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();
- z.wprowadz();
- 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());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement