How many times will the given loop execute? for(int m=4;m<=14;m+=2)
{
system.out.println(m);
}
Answers
Answered by
1
Answer:
class dk3 { public static void main(String args[]) { int m=2,n=15; for(int i=1;i<=5;i++) { m++;--n; System.out .println("m="+m); System.out.println("n="+n); } } } ...
Explanation:
please write me as brainlist
Answered by
1
Answer:
it will execute 6 times
hope my answer is correct
Similar questions