In: Computer Science
Determine the execution count of the following programs: (number of loops executed?)
int i = 10;
while(i > 0)
{
for(int p = 5; p < 14; p++)
b{
System.out.println(i + p)
p++;
}
i--;
}
Screen shot of code and output for more clarity