Advertisement
cesarnascimento

tabelas

Jun 3rd, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public class Main {
  2.     public static void main(String[] args) {
  3.         for(int i=0; i<3; i++){
  4.             System.out.println("-- "+(i+1)+"º Ciclo --");
  5.             for(int j=0; j<3; j++){
  6.                 System.out.println("i="+i+" j="+j);
  7.             }
  8.         }
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement