Working on my assignment for Java and I have created a class called Triangle. This has 3 variables, side1, side2 and side3. My constructor method takes 3 float values and assigns them to each variable in turn.
My issue is if the user puts in (10,11.1,12.2) those are taken as (int,double,double) and not the float that I require (the assignment says the 3 sides must be float values).
So how can I convert each input into a float regardless of if it's an integer or double when inputted?
Thanks,
Jack.