For this task, look over the random.csv data set and use a loop to traverse column 0. As the program traverses the column, output all the values in order, 1 through 30.
Coding:
Hotkey Shortcuts
Move BlocksUP or DOWN or TAB
Run Program ALT + SHIFT + R
Stop Program ALT + SHIFT + S
Hide Tray ALT + SHIFT + X
Zoom In ALT + +
Zoom Out ALT + -
Open Help ALT + SHIFT + H
Navigate to Tray ALT + 1
Navigate to Blocks ALT + 2
Enter Navigation Mode SHIFT + ENTER
Blocks
Hint
Great job!
Try again
First, drag over the count definition block and then the while loop. Then inside the loop, use the block that gets the value from the column at each location. The counter can be used to access each element in the column, starting at 0 and ending at size minus one. Finally, add the output block and increase the value of count inside the loop. When this program is run, you can expect it to output the values 1 through 30.