Question 1 This C++ program accept 10 integers range in between 10 and 15 from a user. If the user enters an integer that is out of the range, an error message appears and the integer will not be stored. All the in- range integers will be stored in an array. The program then counts the frequency of each integer that stores in the array. The main function is given below. The program calls getInteger (..) function to prompt user to enter integer numbers and store them into the respective element of the array. It then calls countFrequency (--.) function to compute the frequencies of each integer in the array. Lastly, displayOutput (...) function is called to display the output on screen. int main ( { // array declaration int countArr[6] = {0}, numArr [10]; getInteger (numArr); countFrequency (numArr, countArr); displayoutput (countArr); return 0; Sample Output Enter an integer between 10 and 15: 10 Enter an integer between 10 and 15: 10 Enter an integer between 10 and 15: 12 Enter an integer between 10 and 15: 13 Enter an integer between 10 and 15: 8 ERROR: Integer must between 10 and 15 Enter an integer between 10 and 15: 14 Enter an integer between 10 and 15: 15 Enter an integer between 10 and 15: 16 ERROR: Integer must between 10 and 15 Enter an integer between 10 and 15: 15 Enter an integer between 10 and 15: 15 Enter an integer between 10 and 15: 10 Enter an integer between 10 and 15: 12 The frequency of the integer: Integer 10: 3 Integer 11: 0 Integer 12: 2 Integer 13: 1 Integer 14: 1 Integer 15: 3 Note: Blue color indicates the user key-in value.

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Question

Need this programming answer urgent please. Thank you

ii.
Complete the function definition for countFrequency (.).
Transcribed Image Text:ii. Complete the function definition for countFrequency (.).
Question 1
This C++ program accept 10 integers range in between 10 and 15 from a user. If the user enters an
integer that is out of the range, an error message appears and the integer will not be stored. All the in-
range integers will be stored in an array. The program then counts the frequency of each integer that
stores in the array.
The main function is given below. The program calls getInteger (...) function to prompt user to
enter integer numbers and store them into the respective element of the array. It then calls
countFrequency (...) function to compute the frequencies of each integer in the array. Lastly,
displayoutput (...) function is called to display the output on screen.
int main() {
// array declaration
int countArr[6] = {0}, numArr[10];
getInteger (numArr);
countFrequency (numArr, countArr);
displayoutput (countArr);
return 0;
Sample Output
Enter an integer between 10 and 15: 10
Enter an integer between 10 and 15: 10
Enter an integer between 10 and 15: 12
Enter an integer between 10 and 15: 13
Enter an integer between 10 and 15: 8
ERROR: Integer must between 10 and 15
Enter an integer between 10 and 15: 14
Enter an integer between 10 and 15: 15
Enter an integer between 10 and 15: 16
ERROR: Integer must between 10 and 15
Enter an integer between 10 and 15: 15
Enter an integer between 10 and 15: 15
Enter an integer between 10 and 15: 10
Enter an integer between 10 and 15: 12
The frequency of the integer:
Integer 10: 3
Integer 1l: 0
Integer 12: 2
Integer 13: 1
Integer 14: 1
Integer 15: 3
Note: Blue color indicates the user key-in value.
Transcribed Image Text:Question 1 This C++ program accept 10 integers range in between 10 and 15 from a user. If the user enters an integer that is out of the range, an error message appears and the integer will not be stored. All the in- range integers will be stored in an array. The program then counts the frequency of each integer that stores in the array. The main function is given below. The program calls getInteger (...) function to prompt user to enter integer numbers and store them into the respective element of the array. It then calls countFrequency (...) function to compute the frequencies of each integer in the array. Lastly, displayoutput (...) function is called to display the output on screen. int main() { // array declaration int countArr[6] = {0}, numArr[10]; getInteger (numArr); countFrequency (numArr, countArr); displayoutput (countArr); return 0; Sample Output Enter an integer between 10 and 15: 10 Enter an integer between 10 and 15: 10 Enter an integer between 10 and 15: 12 Enter an integer between 10 and 15: 13 Enter an integer between 10 and 15: 8 ERROR: Integer must between 10 and 15 Enter an integer between 10 and 15: 14 Enter an integer between 10 and 15: 15 Enter an integer between 10 and 15: 16 ERROR: Integer must between 10 and 15 Enter an integer between 10 and 15: 15 Enter an integer between 10 and 15: 15 Enter an integer between 10 and 15: 10 Enter an integer between 10 and 15: 12 The frequency of the integer: Integer 10: 3 Integer 1l: 0 Integer 12: 2 Integer 13: 1 Integer 14: 1 Integer 15: 3 Note: Blue color indicates the user key-in value.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 5 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education