Instructions ArgumentException is an existing class that derives from Exception; you use it when one or more of a method's arguments do not fall within an expected range. Write the application SwimmingWater Temperature containing a variable that can hold a temperature expressed in degrees Fahrenheit. Within the class, create a method that accepts a parameter for a water temperature and returns true or false, indicating whether the water temperature is between 70 and 85 degrees and thus comfortable for swimming. If the temperature is not between 32 and 212 (the freezing and boiling points of water), it is invalid, and the method should throw an ArgumentException. In the Main() method, continuously prompt the user for data temperature, pass it to the method, and then display the following messages indicating whether the temperature is comfortable, not comfortable, or invalid: X degrees is comfortable for swimming. X degrees is not comfortable for swimming. Value does not fall within the expected range. SwimmingWaterTemp... 1 using System; 2 using static System.Console; 3 class SwimmingWater Temperature 4 { 5 static void Main() 6 { 7 8 9 10 11 12 13} } // Your code here public static boolean CheckComfort(int temp) { // your logic here }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

In C#,

CENGAGE MINDTAP
Programming Exercise 11-2
0 Instructions
=
Labl
</>
ArgumentException is an existing class that derives
from Exception; you use it when one or more of a
method's arguments do not fall within an expected range.
Write the application SwimmingWater Temperature
containing a variable that can hold a temperature
expressed in degrees Fahrenheit. Within the class, create
a method that accepts a parameter for a water
temperature and returns true or false, indicating whether
the water temperature is between 70 and 85 degrees
and thus comfortable for swimming. If the temperature is
not between 32 and 212 (the freezing and boiling points
of water), it is invalid, and the method should throw an
ArgumentException.
In the Main() method, continuously prompt the user
for data temperature, pass it to the method, and then
display the following messages indicating whether the
temperature is comfortable, not comfortable, or invalid:
X degrees is comfortable for swimming.
X degrees is not comfortable for swimming.
Value does not fall within the expected range.
SwimmingWaterTemp...
1 using System;
2 using static System.Console;
3 class SwimmingWater Temperature
4 {
5
6
7
8
9
10
11
12
13}
+
static void Main()
{
}
// Your code here
public static boolean CheckComfort(int temp) {
// your logic here
}
Transcribed Image Text:CENGAGE MINDTAP Programming Exercise 11-2 0 Instructions = Labl </> ArgumentException is an existing class that derives from Exception; you use it when one or more of a method's arguments do not fall within an expected range. Write the application SwimmingWater Temperature containing a variable that can hold a temperature expressed in degrees Fahrenheit. Within the class, create a method that accepts a parameter for a water temperature and returns true or false, indicating whether the water temperature is between 70 and 85 degrees and thus comfortable for swimming. If the temperature is not between 32 and 212 (the freezing and boiling points of water), it is invalid, and the method should throw an ArgumentException. In the Main() method, continuously prompt the user for data temperature, pass it to the method, and then display the following messages indicating whether the temperature is comfortable, not comfortable, or invalid: X degrees is comfortable for swimming. X degrees is not comfortable for swimming. Value does not fall within the expected range. SwimmingWaterTemp... 1 using System; 2 using static System.Console; 3 class SwimmingWater Temperature 4 { 5 6 7 8 9 10 11 12 13} + static void Main() { } // Your code here public static boolean CheckComfort(int temp) { // your logic here }
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Knowledge Booster
Exception Handling Keywords
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education