Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Szkola {
- int n;
- Uczen lista[]=new Uczen[n];
- public void dodaj(Uczen im) {
- for(int i=0; i<lista.length;i++) {
- while(lista[i]!=null)
- lista[i]=im;
- }
- }
- public void wyswietl(double przedmiot, double srednia) {
- for(int i=0;i<lista.length; i++) {
- if(lista[i].przedmiot>=srednia) {
- System.out.printf("%20s","Lista uczniow");
- System.out.print(i +" | \t");
- System.out.printf("%7s%7s%7d", lista[i].nazwisko,lista[i].imie,lista[i].przedmiot);
- }
- }
- }
- public static void main(String[] args) {
- Szkola test = new Szkola();
- test.dodaj(new Uczen("Marek","Adamczyk",1993,3.50,4.20,5.17));
- test.dodaj(new Uczen("Marek","Polakowski",1994,4.20,3.17,2.56));
- test.dodaj(new Uczen("Robert","Polakowski",1994,2.20,3.15,2.20));
- test.dodaj(new Uczen("Marcin","Galant",1994,3.50,5.80,5.15));
- test.wyswietl(chem, 4.0);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment