Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Zbior2 {
- void dodaj(int [] tab,int n)
- {
- System.out.println("podawaj liczby");
- for(int i=0;i<n;i++)
- {
- Scanner skaner2=new Scanner(System.in);
- tab[i] = skaner2.nextInt();
- }
- }
- void usun(int [] tab, int n)
- {
- System.out.println("Którą liczbę chcesz usunąć podaj jej indeks");
- Scanner skaner = new Scanner(System.in);
- int ktora = skaner.nextInt();
- if (ktora!=n)
- {
- tab[ktora]=0;
- }
- }
- void czyZawiera(int [] tablica,int n)
- {System.out.println("Jaką liczbę chcesz sprawdzić ");
- Scanner skaner = new Scanner(System.in);
- int indeks = skaner.nextInt();
- int x=0;
- for(int i=0;i<n;i++)
- { if (indeks == tablica[i])
- {x=1;}
- if (x==1)
- {System.out.println("Liczba ta znajduje sie w zbiorze");}
- else
- {System.out.println("Liczba ta nie znajduje sie w zbiorze");}
- }}
- boolean rowne()
- {return false;}
- void wypisz(int[] tab, int n)
- {
- for(int i=0; i<n;i++)
- {
- System.out.println(i + " --- " + tab[i]);
- }
- }
- public static void main(String[] args)
- {
- int[] tablica;
- tablica=new int[10];
- System.out.println("Ile elementów chcesz dodac?");
- Scanner skaner=new Scanner(System.in);
- int a = skaner.nextInt();
- Zbior2 tab = new Zbior2();
- tab.dodaj(tablica,a);
- tab.wypisz(tablica, a);
- tab.usun(tablica, a);
- tab.wypisz(tablica, a);
- tab.czyZawiera(tablica,a);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement