Array Assignment

Read Chapter 46 and 47 from the online text.

Please complete each of the following programs.

  1. Write a program that creates an array of one hundred random numbers between 0 and 100. Use a for loop to print the contents of the array to the console.
  2. Find the average of an array of 100 random integers.
  3. Create an array of 50 random integers between 1 and 10. Print one asterisks to the console for each instance of the number. For example if there are 5 ones in the array the program would print: 1 *****
  4. Use the array from question three and find the median. The median is the value is the number at which half of the numbers are above and half of the numbers are below. For example: 5 12 9 3 8. The median would be 8 because 5 and 3 are smaller, and 9 and 12 are larger.
  5. Write a program to read N data items into two arrays, X and Y, of size 20. Store the product of corresponding elements of X and Y in a third array, Z, also of size 20. Print a three-column table displaying the arrays X, Y, and Z.

 Get Firefox!

©2003 C. Whittington