186k views
4 votes
Convert the following While loop to a For loop:

Declare Integer count = 0
While count < 50
Display "The count is ", count
Set count = count + 1
End While

In bash code please.

1 Answer

1 vote
Image attached below
Convert the following While loop to a For loop: Declare Integer count = 0 While count-example-1