The task:
1. Create an array "pipes_thickness" with size 200
2. Assign a random value for every element of the array (range: 1-10)
3. Input a value "thickness0"
4. Find the last element of the array that is less or equal to "thickness0"
5. Display results on the screen.
Sooo, the thing is that when I display the results I get an enormous number (...*10^255 magnitude etc.) and that's surely wrong so I'd need help to fix that. Also I'm not sure about the "Last element of the array". What should I do on this one.