You divide the integer by an integer that always uses integer arithmetic, even if you assign the result float. The easiest way to fix is to make one of the operands a float, for example
float percent = (Score1 + Score2 + Score3) / 600f;
Note that this will not actually give you a percentage - it will give you a number from 0 to 1 (assuming the inputs are between 0 and 200).
, 100 - 6:
float percent = (Score1 + Score2 + Score3) / 6f;