Write in c# and use while loop

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

Write in c# and use while loop

Instructions
DailyTemps.cs
1 using System;
2 using static System.Console;
3 class DailyTemps
Write an application
named DailyTemps that
4 {
continuously prompts a
static void Main()
user for a series of daily
{
// Write your main here.
7
high temperatures until
8
}
the user enters a sentinel
9 }
value of 999 . Valid
10
temperatures range from
-20 through 130
Fahrenheit. When the
user enters a valid
temperature, add it to a
total; when the user
enters an invalid
temperature, display the
error message:
Valid temperatures range
Before the program ends,
display the number of
temperatures entered and
the average temperature.
+
Transcribed Image Text:Instructions DailyTemps.cs 1 using System; 2 using static System.Console; 3 class DailyTemps Write an application named DailyTemps that 4 { continuously prompts a static void Main() user for a series of daily { // Write your main here. 7 high temperatures until 8 } the user enters a sentinel 9 } value of 999 . Valid 10 temperatures range from -20 through 130 Fahrenheit. When the user enters a valid temperature, add it to a total; when the user enters an invalid temperature, display the error message: Valid temperatures range Before the program ends, display the number of temperatures entered and the average temperature. +
Expert Solution
Step 1

Program plan:

1. A class DailyTemps is created.

2. The variable tot of type int is used to contain the total temperature values which is initialized to 0

3. The variable temperature of type int is used to store the valid values of temperature.

4. The variable count of type int is used to store the count of temperatures

entered and initialized to 0.

5. A while loop is used to prompt a user for a series of temperature and end

when user enters "999" as temperature. 6. A if loop is used for checking the valid range of temperatures.

 

Program description:

The main purpose of the program is used to find the two largest values among 10 digit

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
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