[solved] – Question 96403
(d)If the user enters 1 and 10 for the first and last numbers in the range, what will be printed out at line 13? Which numbers is the program counting?
1.print (“This program prints selected numbers in in given range.”)
2.anotherGo = “Yes”
3.while AnotherGo == “Yes”
4.lowNumber = input (“Please enter first number in your chosen range.”)
5.highNumber = input (“Please enter the last number in your chosen range.”)
6.x = 0
7.for count = lowNumber to highNumber
8.if count MOD 5 <> 0) AND (count MOD 7 <> 0) then
9.print (count)
10.x = x + 1
11.endif
12.next count
13.print (x, “numbers”)
14.anotherGo = input (“Another go?”)
15.endwhile
Expert Answer
Answer to If the user enters 1 and 10 for the first and last numbers in the range, what will be printed out at line 13? Which numbers is the program counting?….
OR

