Hi

There's something bothering me with my code, and I'm not sure what variable type to use as a result. I have this in my code:

Code:
double x;
int y;
int z;

x = y/z
My question is, will x be a double or an integer?