c# Previously , you wrote a program named Hurricane that classified hurricanes into five categories using the Saffir-Simpson Hurricane Scale. Now, create a modified version named HurricaneModularized...


c#


Previously , you wrote a program namedHurricane that classified hurricanes into five categories using the Saffir-Simpson Hurricane Scale. Now, create a modified version namedHurricaneModularized that passes a user’s input wind speed to a method that returns the hurricane category.



using System;

using static System.Console;

class Hurricane

{

   static void Main()

   {

    // Write your main here.

   }

    public static int GetCategory(int wind)

   {

    // Write your GetCategory method here.

   }

}



Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here