subject

In python please!! Write a program that reads an unknown number of integers (don't tell the program how many integers to expect in advance) into a dynamically resizing array. Then, calculate the sum and the average values of these integers. Your basic algorithm should be as follows,

1) Create an initial array of some reasonable size
2) Read data into the array until it is full
3) Resize the array, increasing its size by some reasonable amount
4) Repeat steps 2 and 3 as needed, until all data is read (EOF is read from stdin)
5) Calculate the sum of all the integers
6) Calculate the average of all the integers
7) Display both numbers

As you are doing this, you may use the sum function, or an accumulator loop, to calculate the sum. I will warn you that using the sum function on its own will likely not work properly for you--you'll need to do some extra work before calling it. The accumulator loop is going to be easier to do.

DO NOT USE ANY OF THE FOLLOWING:

stdio. readAllInts, or any of the related readAll functions in stdio
the .append() method of the List data type
array concatenation

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 09:30
Name the range function that would generate the following list of integers values: 0,1,2,3,4,5.
Answers: 1
question
Computers and Technology, 23.06.2019 14:00
Need ! will choose brainliest! discuss the role of abstraction in the history of computer software.
Answers: 1
question
Computers and Technology, 23.06.2019 16:00
An english teacher would like to divide 8 boys and 10 girls into groups, each with the same combination of boys and girls and nobody left out. what is the greatest number of groups that can be formed?
Answers: 2
question
Computers and Technology, 23.06.2019 21:00
Which set of steps will organize the data to only show foods with more than 100 calories and rank their sugar content from greatest to least?
Answers: 1
You know the right answer?
In python please!! Write a program that reads an unknown number of integers (don't tell the progra...
Questions
question
Social Studies, 11.10.2019 06:00
question
History, 11.10.2019 06:00
Questions on the website: 13722363