How many times *** will print if the following code will
execute ?
int count = 1;
while (count <= 15)
{
System.out.println(count % 2 == 1? "***": "+++++");
}
Answers
Answered by
0
Explanation:
Yrr again sorry mera phn bs ab bnd hi hojyeha kuch din m itna khrb hogya
Answered by
0
Answer:
infinite times as loop variable is not incremented
Explanation:
Hope it helps
please mark my answer brainliest
Similar questions