Using sin function : sin « System Functions « Perl
- Perl
- System Functions
- sin
Using sin function
use POSIX;
$angle = 45;
$conversion = 3.14159265358979 / 180;
$radians = $angle * $conversion;
print "The sine of $angle degrees = ", sin $radians;
Related examples in the same category