Pabl0o0

Untitled

Mar 7th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. public void wpisanieOceny(int numerIndeksu, double ocena){
  2. IteratorTablicowy i = new IteratorTablicowy(student);
  3. boolean zmieniona = false;
  4. i.first();
  5. while(!i.isDone() && i.current() !=null){
  6. Student st = (Student)i.current();
  7. if(st.getNumerIndeksu() == numerIndeksu){
  8. st.setOcena(ocena);
  9. System.out.println("Ocena ustawiona");
  10. System.out.println(st);
  11. zmieniona = true;
  12. }
  13. if(!zmieniona){
  14. System.out.println("Nie znaleziono studenta");
  15. }
  16. i.next();
  17.  
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment