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
(Created page with "{{DISPLAYTITLE:_R2D}} The _R2D function converts a '''radian''' value into a '''degree''' value. {{PageSyntax}} : {{Parameter|result!}} = _R2D({{Parameter|num}}) ==Availability== * '''Version 1.000 and up.''' {{PageExamples}} ''Example:'' Coverting Radian into Degree. {{CodeStart}} INPUT "Give me an angle in Radians ", D R = _R2D(D) PRINT "That angle in Degrees is "; R {{CodeEnd}} {{OutputStart}} Give me an angle in Radians 0.5 That angle in Degrees is...") |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:_R2D}} | {{DISPLAYTITLE:_R2D}} | ||
The [[_R2D]] function converts a '''radian''' value into a '''degree''' value. | The [[_R2D]] function converts a '''radian''' value into a '''degree''' value. | ||
Line 7: | Line 7: | ||
{{PageAvailability}} | |||
* ''' | * '''QB64 v1.0 and up''' | ||
* '''QB64-PE all versions''' | |||
Line 14: | Line 15: | ||
''Example:'' Coverting Radian into Degree. | ''Example:'' Coverting Radian into Degree. | ||
{{CodeStart}} | {{CodeStart}} | ||
INPUT "Give me an angle in Radians ", D | {{Cl|INPUT}} {{Text|<nowiki>"Give me an angle in Radians "</nowiki>|#FFB100}}, R | ||
D = {{Cl|_R2D}}(R) | |||
PRINT "That angle in Degrees is "; | {{Cl|PRINT}} {{Text|<nowiki>"That angle in Degrees is "</nowiki>|#FFB100}}; D | ||
{{CodeEnd}} | {{CodeEnd}} | ||
{{OutputStart}} | {{OutputStart}} | ||
Line 28: | Line 29: | ||
* [[_G2D]], [[_G2R]] | * [[_G2D]], [[_G2R]] | ||
* [[_R2G]] | * [[_R2G]] | ||
{{PageNavigation}} | {{PageNavigation}} |
Latest revision as of 13:00, 29 March 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 ", R D = _R2D(R) PRINT "That angle in Degrees is "; D |
Give me an angle in Radians 0.5 That angle in Degrees is 28.64789 |
See also