1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-07 21:25:14 +00:00
qb64/internal/help/_G2D.md

482 B

The _G2D function converts a gradian value into a degree value.

Syntax

result = _G2D(num)

Availability

  • Version 1.000 and up.

Example(s)

Coverting Gradians into Degree.


INPUT "Give me an angle in Gradians ", D
R = _G2D(D)
PRINT "That angle in Degrees is "; R


Give me an angle in Gradians 60
That angle in Degrees is     54

See Also