Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public class While{
  2.  
  3.  
  4. public static void main(String args[]){
  5.  
  6. int iterador = 0;
  7.  
  8. while(iterador<10){
  9.  
  10. System.out.println ("La iteracion es: "+ iterador);
  11.  
  12. iterador++;
  13.  
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement