QB64.com

QB64 is a modern extended BASIC programming language that retains QBasic/QuickBASIC 4.5 compatibility and compiles native binaries for Windows, Linux, and macOS.

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

Syntax

result = _D2G(num)

Availability

Example(s)

Coverting Degrees into Gradians.


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


Give me an angle in Degrees 60
That angle in Gradient is  66.66666

See Also