Respuesta :

Here's the pseudocode for incrementing the variable count inside a loop.

Using  while loop :

Initialize count to zero
While [insert condition here]
  Add 1 to count 
End while


basing the answer in a While Loop
intialize count tozero
while {insert condition}
Add1 to count 
End while
int count=0
int limit=10
count=1
while(count<=10)
count=count+1
print
The variable count here is initialized tested and changed as the loop executes.it is an ordinary int variable,but it is used in a special role.The role is that of a loop control variable.however note that not all loops have loop control variables.
In our case the type of loop we are looking at is a counting loop.it counts upwards using the loop control variable as a counter.