Ask Question
20 July, 16:43

he Saffir-Simpson Hurricane Scale classifies hurricanes into five categories numbered 1 through 5. Write an application named Hurricane that outputs a hurricane's category based on the user's input of the wind speed. Category 5 hurricanes have sustained winds of at least 157 miles per hour. The minimum sustained wind speeds for categories 4 through 1 are 130, 111, 96, and 74 miles per hour, respectively. Any storm with winds of less than 74 miles per hour is not a hurricane. If a storm falls into one of the hurricane categories, output This is a category # hurricane, with # replaced by the category number. If a storm is not a hurricane, output This is not a hurricane.

+3
Answers (1)
  1. 20 July, 16:56
    0
    namespace Hurricane

    {

    public partial class Hurricane : Form

    {

    public Hurricane ()

    {

    InitializeComponent ();

    }

    private void btnSubmit_Click (object sender, EventArgs e)

    {

    //declare constants and variables

    const int CAT5 = 157, CAT4 = 130, CAT3 = 111, CAT2 = 96, CAT1 = 74;

    double WindSpeed = Convert. ToDouble (txtInput. Text);

    string Category;

    //determine hurricane category

    if (WindSpeed > = CAT5)

    Category = "a category 5 hurricane.";

    else if (WindSpeed > = CAT4)

    Category = "a category 4 hurricane.";

    else if (WindSpeed > = CAT3)

    Category = "a category 3 hurricane.";

    else if (WindSpeed > = CAT2)

    Category = "a category 2 hurricane.";

    else if (WindSpeed > = CAT1)

    Category = "a category 1 hurricane.";

    else

    Category = "not a hurricane.";

    //output

    lblOutput. Text = "A windspeed of " + WindSpeed + "mph is " + Category;

    }

    private void btnExit_Click (object sender, EventArgs e)

    {

    Application. Exit ();

    }

    }

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “he Saffir-Simpson Hurricane Scale classifies hurricanes into five categories numbered 1 through 5. Write an application named Hurricane ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers