R2D: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
No edit summary |
No edit summary |
||
Line 29: | Line 29: | ||
* [[_G2D]], [[_G2R]] | * [[_G2D]], [[_G2R]] | ||
* [[_R2G]] | * [[_R2G]] | ||
{{PageNavigation}} | {{PageNavigation}} |
Revision as of 00:59, 29 January 2023
The _R2D function converts a radian value into a degree value.
Syntax
- result! = _R2D(num)
Availability
- QB64 v1.0 and up
- QB64-PE all versions
Examples
Example: Coverting 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