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