I am trying to convert an int value to double.
This is what I'm working with. I am not aloud to declare the variables with a double, only int.
double a=0,b=1,c=2,d=3;
double average= (a+b+c+d)/4;
System.out.println("The average of " + a + " " + b + " " + c + " and "+d+" is "+average)...