11. boolean bool = true; 12. if(bool = false) { 13. System.out.println(“a”); 14. } else if (bool) { 15. System.out.println(“c”); 16. } else if (!bool) { 17. System.out.println(“c”); 18. } else { 19. System.out.println(“d”); 20. }
Show comments for this question (1) Add comments Link to this question