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

Syntax

result! = _R2D(num)

Availability

Example(s)

Converting Radian into Degree.


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


Give me an angle in Radians 0.5
That angle in Degrees is    28.64789

See Also