Pascal <-> PHP | 64-bit real number
Pascal Used keywords: double
double
Description
doubleExamples
Pascal
64-bit real number the possible of use:x:= 3.14159265359; { x = 3.14159265359}
y:= 123456789; { y = 123456789.0}
y :=double((x * y)); { y = 387850941.35821074}.
PHP Used keywords: double
double
Description
doubleExamples
PHP
64-bit real number the possible of use:$x= 3.14159265359; // x = 3.14159265359
$y= 123456789; // y = 123456789.0
$y =(double)($x * $y); // y = 387850941.35821074Pascal Used keywords: double
double
Description
doubleExamples
Pascal
64-bit real number the possible of use:x:= 3.14159265359; { x = 3.14159265359}
y:= 123456789; { y = 123456789.0}
y :=double((x * y)); { y = 387850941.35821074}.
PHP Used keywords: float
float
Description
floatExamples
PHP
64-bit real number the possible of use:$x= 3.14159265359; // x = 3.14159265359
$y= 123456789; // y = 123456789.0
$y =(double)($x * $y); // y = 387850941.35821074Pascal Used keywords: double
double
Description
doubleExamples
Pascal
64-bit real number the possible of use:x:= 3.14159265359; { x = 3.14159265359}
y:= 123456789; { y = 123456789.0}
y :=double((x * y)); { y = 387850941.35821074}.
PHP Used keywords: real
real
Description
realExamples
PHP
64-bit real number the possible of use:$x= 3.14159265359; // x = 3.14159265359
$y= 123456789; // y = 123456789.0
$y =(double)($x * $y); // y = 387850941.35821074You can find it in the following collections: real numbers | numbers | data types
64-bit real number in another programming language:
Differences to: