Guest User

Untitled

a guest
Aug 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class Person
  2. {
  3. public static enum SPOL { MEN, FEMALE }
  4. public SPOL spol;
  5.  
  6. }
  7.  
  8. Person person = new Person();
  9.  
  10. // spol je lahko samo MEN ali FEMALE
  11. person.spol = Person.SPOL.MEN;
  12. person.spol = Person.SPOL.FEMALE ;
  13.  
  14. // in ce potem delaš kje kšn loop in morš vedt al je dec al baba, sam primerjaš
Add Comment
Please, Sign In to add comment