Calculate the average of the values entered

Assignment Help Computer Engineering
Reference no: EM132211429

Question :

Write a program that can be used to gather statistical data about the number of movies college students see in a month. The program should perform the following steps:

Ask the user how many students were surveyed (not less than zero).

An array of integers the size of the number of students should be dynamically allocated.

Allow the user to enter the number of movies each student saw into the array (between 0 and 100, inclusive).

Calculate the average of the values entered.

Display the result

Notes:

Whenever accessing dyn_array, use pointer notation in place of regular square array brackets.

Use the following skeleton for the main program:

int main(){

int *dyn_array;

int students;

float avrg;

do{

cout << "How many students will you enter? ";

cin >> students;

}while ( students <= 0 );

dyn_array = create_array( students );

enter_data( dyn_array, students )

avrg = find_average( dyn_array, students );

cout << "The array is:" << endl << endl;

show_array( dyn_array, students);

cout << endl;

cout << "The average is " << avrg << ".\n";

delete [] dyn_array;

return 0;

}

Don't forget to block-comment every function definition.

Reference no: EM132211429

Questions Cloud

What are their tax bases in their shares : Also assume no distributions were made. Given the income statement above, what are their tax bases in their shares at the end of year 1
Print the given number of fibonacci sequence : Write a program using the fork () system call that prints the given number of Fibonacci sequence.
How interest expense to foreign source income : Goolsbee, Inc., A US corporation generates US- source and foreign source gross income. How do you apportion interest expense to foreign source income
Write a function vowels that receives an array of character : Write a function vowels that receives an array of characters and its size, it returns how many vowel letters in that array.
Calculate the average of the values entered : Write a program that can be used to gather statistical data about the number of movies college students see in a month.
What the amount and character of gain glover must recognize : What is the amount and character of gain Glover must recognize on the distribution, and what is his basis in his Oak Corp. stock
What the amount and character of gain brady must recognize : What is the amount and character of gain Brady must recognize on the distribution in each of the following alternative scenarios
Write a program that reads the contents of the two files : Write a program that reads the contents of the two files into two separate arrays, or ArrayLists.
Journalize all entries required on the given dates : Journalize all entries required on the above dates, including entries to update depreciation, where applicable, on assets disposed of. Pronghorn Company

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd