question archive Rewrite the following program segment using a repeat structure rather than a while structure
Subject:Computer SciencePrice:2.89 Bought3
Rewrite the following program segment using a repeat structure rather than a while structure. Be sure the new version prints the same values as the original.
Count ← 2; while (Count < 7) do (print the value assigned to Count and Count ← Count + 1)
Rewriting the program segment using a while structure:
#declare Count as 1
Count=1
#declare a while loop that prints the values up to Count
while(Count<=5):
#display Count
print(Count)
#increment Count
Count=Count+1
Output:
1
2
3
4
5