working on casting types and stuck with this code can anyone
{
double heightDouble = 1.825;
float heightFloat;
int heightInt;
heightFloat = heightDouble;
heightInt = (int)heightFloat;
Console.Write("heightInt is " + heightInt + " and heightFloat is " + heightFloat);
}