D2R: 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:_D2R}} The _D2R function converts a '''degree''' value into a '''radian''' value. {{PageSyntax}} :: {{Parameter|result}} = _D2R({{Parameter|num}}) ==Availability== * '''Version 1.000 and up.''' {{PageExamples}} ''Example:'' Coverting Degrees into Radians. {{CodeStart}} INPUT "Give me an angle in Degrees ", D R = _D2R(D) PRINT "That angle in Radians is "; R {{CodeEnd}} {{OutputStart}} Give me an angle in Degrees 60 That angle in Radians is 1....") |
No edit summary |
||
Line 7: | Line 7: | ||
{{PageAvailability}} | |||
* ''' | * '''QB64 1.0 and up''' (QB64 Team) | ||
* '''QBPE 0.5 and up''' (QB64 Phoenix Edition) | |||
Revision as of 23:06, 29 April 2022
The _D2R function converts a degree value into a radian value.
Syntax
- result = _D2R(num)
Availability
- QB64 1.0 and up (QB64 Team)
- QBPE 0.5 and up (QB64 Phoenix Edition)
Examples
Example: 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