Advertisement
Guest User

Untitled

a guest
May 27th, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class Cislo {
  2. int cislo;
  3.  
  4. public int getCislo() {
  5. return cislo;
  6. }
  7.  
  8. public void setCislo(int cislo) {
  9. this.cislo = cislo;
  10. }
  11.  
  12. public static void main(String[] args) {
  13. Cislo cislo = new Cislo();
  14. cislo.getCislo();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement