Question
C- coding question Timber Regrowth A challenge in timber management is to determine how many acres to leave uncut after harvesting in a forest so
C- coding question
Timber Regrowth
A challenge in timber management is to determine how many acres to leave uncut after harvesting in a forest so that the harvested area is reforested in a certain period of time. It is assumed that reforestation take place at a known constant rate, r per year, depending on climate and soil conditions. A reforestation equation expresses this growth as a function of the amount of timber standing and the reforestation rate.
where i represents the year, 0 after harvesting is completed, and 1, 2, 3 represents the number of years after harvesting (thus A0 represents the acres uncut after harvesting is completed, and A1, A2, A3, represents the reforested acres after years 1, 2, 3, ).
r is the reforestation rate expressed as a fraction (for example 0.05 means that the forested acres are increases by 5% at the end of a year).
You are responsible for developing a software tool that supports analysis of reforestation. Given (from the user)
- the number of total acres,
- a minimum value for acres uncut,
- a maximum value for acres uncut,
- and reforestation rate,
show a table in the console that increments the values of uncut acres (from the given minimum to the maximum values) and for each of these values the total number of years it takes to totally restore the forest. The table shall contain 20 rows. The following shows a sample interaction with the user.
Complete the project using the following guidelines:
- Definitions
- Define a structure type, FOREST, that contains 5 members, an array to store the name of the forest, and 4 members to store the data values obtained from the user (see the above list).
- Use symbolic constants to eliminate magic numbers in your program.
- Function: main
- Declares a structure variable of type FOREST and one or two arrays for storing table data.
- Use a loop to repeat the process (get user input, fill in the table data and print a table) until the user wishes to quit.
- This function shall call three functions to 1) get user input, 2) fill in the table data, and 3) display the table data.
- Function getForestInput
- This function uses a pointer to fill in the structure variable declared in main.
- Data input by the user must be checked so that
- All real values must be greater than 0.0 (use the function getPositiveValue from lab 5).
- The maximum uncut acres must be less than the total acres of the forest.
- The minimum uncut acres must be less than the maximum uncut acres.
- The reforestation rate must be between 0 and 1 (exclusive, i.e. cannot be 0 or 1).
- Function displayTable
- The parameters of this function consist of a pointer to a structure variable of type FOREST and the necessary parameters to access and update the arrays declared in the function main. Do not use symbolic constants for the dimensions of the arrays, but parameters (this makes the function general to handle arrays of any dimension).
- This function first displays the forest information (see the sample output).
- It then displays the contents of the array(s) in table form.
- Please respect the output format such as the number of digits in the fraction part of the real numbers.
-
To answer this question, please provide:
- The source code of your program (DO NOT insert the source code into your assignment document, PDF file).
- Insert the output for the test cases shown in the table on the next page into your assignment document. Also show an output that shows how invalid input data is treated.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started