Advertisement
jfcmacro

Anidada1

Feb 21st, 2020
251
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 Anidada1 {
  2.  
  3.     public static void main(String []args) {
  4.     int i,j;
  5.  
  6.     i = 0;
  7.     while (i < 4) {
  8.         j = 0;
  9.         while (j < 3) {
  10.         System.out.println("i=" + i + " j=" + j);
  11.         j = j + 1;
  12.         }
  13.         i = i + 1;
  14.     }
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement