D do not know which function to use apparently

Adam D. Ruppe destructionator at gmail.com
Tue Dec 11 14:22:30 UTC 2018


On Tuesday, 11 December 2018 at 14:16:05 UTC, Narxa wrote:
> int var = floor(sqrt(n)) // where 'n' is a 'const int'

You can just cast it to float:

floor(sqrt( cast(float) n ));

and it will work.


More information about the Digitalmars-d-learn mailing list