public class MethodParams{
public static void main(String[] args) {
//create a class instance
MethodParams mp = new MethodParams();
//call your method here
double d = mp.convertIntToDouble(44);
//print the value to the console
System.out.printLn(d);
}
//create your first method here
public double convertIntToDouble(int num){
return (double)num;
}
}