Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. //Projeto Loops
  2. //Novo pacote: com.projeto.loops
  3. //Cria nova classe: loopsPrincipal
  4.  
  5. //Loops while , do while e for
  6.  
  7. /* int numero = 0;
  8.  
  9.  
  10. while (numero < 5)
  11. {
  12. System.out.Println("Loop: " + numero);
  13. numero++;
  14.  
  15. }*/
  16.  
  17. //===============================
  18.  
  19. int numero = 0;
  20.  
  21.  
  22. for (n=1; n<=5; n++)
  23. {
  24. System.out.Println("Loop:" + numero);
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement