Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Introduction to C Programming COP 3223 Objectives 1. To reinforce the use of loops. 2. To learn how to read information from files. Introduction: Who

Introduction to C Programming COP 3223

Objectives

1. To reinforce the use of loops.

2. To learn how to read information from files.

Introduction: Who doesnt love dragons?

Movies about dragons and dragon training were very popular this summer. Your friend has not stopped talking about how awesome dragons are and how cool it would be to train them. To amuse your friend, you have decided to create a series of programs about dragons.

Problem: Celebration of the First Flight (flight.c)

In previous programs, we helped your dragon learn how to fly and train to improve their flight distance. Its time for your dragons Celebration of the First Flight, similar to a dragon sweet 16. Every day for a month, your dragon is responsible for scheduling demonstration flights with the other members of Dragon Island. Your dragon wants to be presented in the best possible light, so it is up to you to determine the best month for the Celebration.

In this program, you will examine a file of weather data. Ask the user for the name of this file. Then, ask the user for the temperature range that their dragon flies best in. Calculate the percentage of days in each month that fall into that range. Dragon Island does not have a complete set of weather data, so the file of weather data may not contain information for every day in every month. Instead, calculate the percentage by dividing the number of days in range by the number of days that there is data for.

The month with the highest percentage is the month that the dragon should pick for their Celebration of the First Flight.

Arrays are not expected to be a part of this program, except for the name of the input file. Do not attempt to store all the values in the file in your program.

Input Specification

1. The lower bound temperature will be an integer between 0 and 80

2. The upper bound temperature will be an integer higher than the lower bound and less than 120

3. The file name will be a string less than 30 characters in length

Input File Specification

There will be 12 months of weather data available. Since months may not have complete information, each month will begin with a header number (n) to indicate how many temperatures are available for that month. The month will then have n real numbers representing the temperature for each day.

Output Specification

Output to the screen. Show the user the percentage of days in range for each month. Then, print the best month for the Celebration of the First Flight.

Month X: YY.Y percent of days in range.

I recommend month Z for the Celebration of the First Flight!

Output Sample

Below is a sample output of running the program. Note that this sample is NOT a comprehensive test. You should test your program with different data than is shown here based on the specifications given above. In the sample run below, for clarity and ease of reading, the user input is given in italics while the program output is in bold. (Note: When you actually run your program no bold or italics should appear at all. These are simply used in this description for claritys sake.)

The corresponding sample input file is available on the webcourse.

Tell me about your dragons preferred temperature for flying:

What is the coldest temperature they can fly in?

60

What is the hottest temperature they can fly in?

80

Please enter the name of the weather data file for Dragon Island.

island.txt

Month 1: 66.1 percent of days in range.

Month 2: 71.4 percent of days in range.

Month 3: 72.6 percent of days in range.

Month 4: 98.3 percent of days in range.

Month 5: 95.2 percent of days in range.

Month 6: 48.3 percent of days in range.

Month 7: 48.41 percent of days in range.

Month 8: 11.3 percent of days in range.

Month 9: 63.3 percent of days in range.

Month 10: 100.00 percent of days in range.

Month 11: 83.3 percent of days in range.

Month 12: 77.4 percent of days in range.

I recommend month 10 for the Celebration of the First Flight!

Deliverables

One source files flight.c is to be submitted over WebCourses.

Restrictions

Although you may use other compilers, your program must compile and run using Code::Blocks. Your program should include a header comment. Also, make sure you include comments throughout your code describing the major steps in solving the problem.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Analytics Systems Engineering Cybersecurity Project Management

Authors: Christopher Greco

1st Edition

168392648X, 978-1683926481

More Books

Students also viewed these Databases questions

Question

5. Identify and describe nine social and cultural identities.

Answered: 1 week ago

Question

2. Define identity.

Answered: 1 week ago

Question

4. Describe phases of majority identity development.

Answered: 1 week ago