hi. could you explain...
here is what i get:
191.29000000000002
why not 191.29
how to make c just 191.29
Code:
public class test {
public static void main (String [] args)
{
int a=11;
double b=17.39;
double c=a*b;
System.out.println(c);
}
}
191.29000000000002
why not 191.29
how to make c just 191.29