Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

CS 110 Lab Assignment 11 NOTE: S points will be given for well-constructed comments in submitted codes. Problem 1 (10 points): Write a program printFrequency

image text in transcribed
CS 110 Lab Assignment 11 NOTE: S points will be given for well-constructed comments in submitted codes. Problem 1 (10 points): Write a program printFrequency java that will take an integer array and number of elements that it stores as user input and will print frequency of each element in the given array Sample Input: Enter length of array: 8 Enter element 0: 2 Enter element 1: 5 Enter element 2: 6 Enter element 3: 5 Enter element 4: 2 Enter element 5:8 Enter element 6:8 Enter element 7: 5 Enter element 8: 5 Sample Output: Element 2 has frequency: 2 Element 5 has frequency: 4 Element 6 has frequency: 1 Element 8 has frequency: 2 Problem 2 (10 points): Write a program findMaxima.java that will take an integer array and number of elements that it stores as user input and will print all the Maximas. (NOTE: An element is a Maxima if it is greater than all the elements to its right side) Sample Input: Enter length of array: 7 Enter element 0: 10 Enter element 1: 9 Enter element 2: 14 Enter element 3:23 Enter element 4: 15 Enter element S: 0 Enter element 6: 9 Sample Output: Maximas in the given array are: 23, 15, 9

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

Handbook Of Relational Database Design

Authors: Candace C. Fleming, Barbara Von Halle

1st Edition

0201114348, 978-0201114348

More Books

Students also viewed these Databases questions