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 _G2D function converts a gradian value into a degree value.

Syntax

result = _G2D(num)

Availability

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