programming-examples/perl/SystemFunction/Using sin function with radian.pl

12 lines
185 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
use POSIX;
$angle = 45;
$conversion = 3.14159265358979 / 180;
$radians = $angle * $conversion;
$sine = sin $radians;
print "The sine of $angle degrees = ", $sine, "\n";