What is wrong with my code?
Prompt user for hourly rate. If less than $5.65 or greater than $49.99 display error message.
{
//declare variables
const double HIGH = 49.99;
const double LOW = 5.65;
double HourlyPayRate
//input
Console.Write("Enter your hourly pay rate:");
HourlyPayRate = Convert.ToDouble (Console.ReadLinne());
//output
if (HourlyPayRate > HIGH);
Console.WriteLine ("The amount entered is to much");
else
if (HourlyPayRate < LOW);
Console.WriteLine (The amount you entered is to small");
}