Guest User

Untitled

a guest
May 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. public static void main(String[] args) {
  2.  
  3. //Forma 1
  4. for (int i = 0; i <= 10; i++) {
  5.  
  6. if ((i % 2) != 0) {
  7. System.out.println(i);
  8.  
  9. }
  10.  
  11. //Forma 2
  12. System.out.println("----------------------------");
  13.  
  14. for (int c = 0; c <= 10; c++) {
  15. c = c + 1;
  16. System.out.println(+c);
  17. }
  18.  
  19. }
  20. }
  21.  
  22. }
Add Comment
Please, Sign In to add comment