You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
143 B
Perl

$y = 1.15470053837925;
$x = 2.0;
$conversion = 180 / 3.14159265358979;
print "The angle = ", $conversion * atan2($y, $x), " degrees.";