Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. while (linha != null){
  2. while (!linha.equalsIgnoreCase(ordem)){
  3. linha = in.readLine();
  4. }
  5. out.write(linha);
  6. out.newLine();
  7. linha = in.readLine();
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement