SyntaxFix
Write A Post
Hire A Developer
Questions
157/32 is int/int, which results in an int.
int/int
int
Try using the double literal - 157/32d, which is int/double, which results in a double.
157/32d
int/double
double