-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProblem5.cs
More file actions
23 lines (19 loc) · 996 Bytes
/
Problem5.cs
File metadata and controls
23 lines (19 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/// <summary>
/// C# technical interview problem #5
/// </summary>
public static class Problem5
{
/// <summary>
/// You want to go to the beach and need to know the current weather so you know if it's a good day to go or not.
/// Thankfully, the US government provides a free weather API. Write a function that returns the current temperature
/// in Daytona Beach, Florida and displays it to the console using any format that you want. The NOAA weather API
/// documentation is hosted at https://www.weather.gov/documentation/services-web-api. The latitude and longitude
/// for Daytona Beach, Florida are approximately 29.2071,-81.0197. You can output temperature for any time today
/// (does not have to be the current time).
/// </summary>
public static void ShowMeTheWeather()
{
// TODO: Write your implementation here...
Console.WriteLine("Replace this with your weather API temperature output");
}
}