C# Coding Assignment- Visual Studio (MUST USE THE ATTACHED SHELL)
//Name
//Data
//Assignment
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace assignment8
{
class assignment8
{
static void Main(string[] args)
{
//Declare your variables and arrays here - remember, //you'll need the arrays to be "double" and two of them //should be initialized with the given values
//Fill your wind direction and wind speed arrays with random
//values based on the specifications given using a for loop
//Convert your vehicle and wind directions to radians - you can
//actually do this as part of the airspeed calculation if you like.
//Calculate airspeed values (also in a for loop) using the //discussed Math library functions and property.
//Output your table (again, using a for loop)
}
}