radko93

Untitled

Jan 20th, 2013
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1.  
  2. public class Uczen extends Osoba {
  3.     double mat, fiz, chem;
  4.     Uczen(String imie, String nazwisko, int rok, double mat, double fiz, double chem) {
  5.         super(imie,nazwisko,rok);
  6.         this.mat=mat;
  7.         this.fiz=fiz;
  8.         this.chem=chem;
  9.     }
  10.    
  11.    
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment