11. int x = 1, y =6; 12. while (y--) { 13. x++; 14. } 15. System.out.println(“x =” + x + “y =” +y);
Show comments for this question (1) Add comments Link to this question