Guest User

Untitled

a guest
Dec 7th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. private static void listarFila() {
  2. Keyboard.clrscr();
  3. System.out.println("Codigo Nome do Paciente Prioridade");
  4. System.out.println("---------- ---------------------- ----------------");
  5. for (NoSimpEnc<Paciente> p = listaPrioridadePaciente.lista.inicio; p != null; p = p.getProx()) {
  6. System.out.printf("%7d %12s %10d\n",p.getObj().getCodPaciente(), p.getObj().getNomePaciente(), p.getObj().getPrioridade());
  7. }
  8. Keyboard.waitEnter();
  9. }
Add Comment
Please, Sign In to add comment