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

9 lines
159 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;
print "The sine of $angle degrees = ", sin $radians;