# quadeval.pl - A Simple PerlProgram # Input: Three numbers representing the values of # a, b, c, and x # Output: The value of the expression # axx + bx +c # Get Input print "Please input the value of a "; $a = ; print "Please input the value of b "; $b = ; print "Please input the value of c "; $c = ; print "Please input the value of x "; $x = ; # Compute and display the result $result = $a * $x * $x + $b * $x +$c; print "The value of the expression is: $result ”n";