hi..i m having the follwing problem.. want to get the result in float
suppose
int a= convert.toint32(textbox1.text);
int b= convert.toint32(textbox2.text);
float ans= math.sqrt(a*b);
label1.text= ans.tostring();
output..
a=7
b=3
ans should be= 4.582 but i get an error
cannot implicitly convert type 'double' to 'float'.
pls help..how can i get the float ans...