Difference between pages "Quotation mark" and "R2D"
(Difference between pages)
Jump to navigation
Jump to search
imported>Clippy m |
imported>SMcNeill (Created page with '{{DISPLAYTITLE:_R2D}} The '''_R2D''' function converts a RADIAN value into a DEGREE value. {{PageSyntax}} :: result = _R2D(''num'') *(Only available in QB64-GL, from Dir…') |
||
Line 1: | Line 1: | ||
− | + | {{DISPLAYTITLE:_R2D}} | |
+ | The '''_R2D''' function converts a RADIAN value into a DEGREE value. | ||
− | '' | + | {{PageSyntax}} |
+ | :: result = [[_R2D]](''num'') | ||
− | * | + | *(Only available in QB64-GL, from Dirty Builds after 06/20/2014. Previous versions of QB64 don't support this command.) |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | ''See also:'' | + | ''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 28.64789 | ||
+ | {{OutputEnd}} | ||
+ | |||
+ | |||
+ | ''See also:'' | ||
+ | * [[_D2G]], [[_D2R]] | ||
+ | * [[_G2D]], [[_G2R]] | ||
+ | * [[_R2D]], [[_R2G]] | ||
− | |||
− | |||
{{PageNavigation}} | {{PageNavigation}} |
Revision as of 16:00, 25 June 2014
The _R2D function converts a RADIAN value into a DEGREE value.
Syntax
- result = _R2D(num)
- (Only available in QB64-GL, from Dirty Builds after 06/20/2014. Previous versions of QB64 don't support this command.)
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: