error declaring float variable in java
/* in java the default type for decimal numbers is set to double
so, you will have to tell java that it is float. just setting the type
will not do the job. you will have to add letter "f" at the end of the value
*/
// an example:
float number = 69.69f ;