I just want to know how to write a for loop to check each value to the 0.1 place rather than a whole number. I know for example doing (int i=0; i<5;i++) goes by the numbers 1,2,3,4,5 but what if I want to check 1.1,1.2,1.3 and so on. I know that the i++ goes by a whole number. How would i change that to check decimal places.