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 _D2R function converts a degree value into a radian value.

Syntax

result = _D2R(num)

Availability

Example(s)

Coverting Degrees into Radians.


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


Give me an angle in Degrees 60
That angle in Radians is 1.047198

See Also