Answer:
Read code below
Step-by-step explanation:
n = 10
while n is <= 25{
print(n)
n +=5
}
This while loop will print all multiples of 5 between 10 and 25 by starting with 10 as n, printing n, then incrementing n by 5 until n is greater than 25.
3.4m questions
4.3m answers