Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1.  class Student {  
  2.    int nr_indeksu;
  3.    float srednia_ocen;
  4.    public:
  5.       Student(int nr=0, float sr=0) : nr_indeksu(nr), srednia_ocen(sr) {}
  6.  };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement