as far as i know it can't be done ( the division of 2 variables from diffrent types).
i used this code in c# and it worked:
int x = 7;
double y = 6.5;
Console.WriteLi ne(x / y);
my question is how can i divide 2 variables from diffrent types without explicit converting them to the same type??
i used this code in c# and it worked:
int x = 7;
double y = 6.5;
Console.WriteLi ne(x / y);
my question is how can i divide 2 variables from diffrent types without explicit converting them to the same type??
Comment