programming-examples/perl/SystemFunction/Using sin function.pl
2019-11-15 12:59:38 +01:00

9 lines
159 B
Perl

use POSIX;
$angle = 45;
$conversion = 3.14159265358979 / 180;
$radians = $angle * $conversion;
print "The sine of $angle degrees = ", sin $radians;