Saved Bookmarks
| 1. |
22. What will be the output of thefollowing programint a, b=4;for(a=6; a |
Answer» Required Answer:-Correct Code:int a, b=4; for(a=6;a<=24;a+=6) { if(a%b==0) break; } System.out.println(a); Output:Explanation:
See the ATTACHMENT for output. •••♪ |
|