Guest User

Untitled

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2.  
  3. public class afd {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. int outer = 0;
  8. int inner = 0;
  9. for (int oC = 0; oC < 4; oC++)
  10. {
  11. outer = outer +1;
  12. for (int iC = 0; iC < 4;iC++)
  13. {
  14. inner = inner + 1;
  15. }
  16.  
  17. }
  18. System.out.println (inner);
  19. System.out.println (outer);
  20.  
  21. }
  22.  
  23. }
Add Comment
Please, Sign In to add comment