
Use C++ Code
Implement a function named largerThanN that accepts three arguments: an array of type int, the size of the array of type int, and an int number n.
The function should display all of the numbers in the array that are greater than the number n.
in the main() function create an array named numbers containing 10 integers : 30,20,50,2,-1,44,3,12,90,32
Ask the user to enter a number.
Call the function largerThanN and pass the array, the size, and the number that the user entered.

Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 3 images

I need flowchart for this question!
Use C++ Code
Implement a function named largerThanN that accepts three arguments: an array of type int, the size of the array of type int, and an int number n.
The function should display all of the numbers in the array that are greater than the number n.
in the main() function create an array named numbers containing 10 integers : 30,20,50,2,-1,44,3,12,90,32
Ask the user to enter a number.
Call the function largerThanN and pass the array, the size, and the number that the user entered.
I need flowchart for this question!
Use C++ Code
Implement a function named largerThanN that accepts three arguments: an array of type int, the size of the array of type int, and an int number n.
The function should display all of the numbers in the array that are greater than the number n.
in the main() function create an array named numbers containing 10 integers : 30,20,50,2,-1,44,3,12,90,32
Ask the user to enter a number.
Call the function largerThanN and pass the array, the size, and the number that the user entered.
- Write a function named 'dynamicRotate (num)'. When invoked, the `dynamicRotate' function will accept a number to be used as the rotation amount and return a function. Positive numbers rotate the array to the right and negative numbers rotate to the left. The function returned by 'dynamicRotate' will accept an array to be rotated by the amount provided when 'dynamicRotate' was first invoked. It will return the original array mutated by the given rotation. Examples: ' ' ' js let arr - ['a', 'b', 'c', 'd', 'e']; rotateRightTwo = dynamicRotate (2); rotateRightTwo (arr); console.log(arr); // [ 'd', 'e', 'b', 'e' ]; let animals = ['wombat', 'koala', 'opossum', "kangaroo']; rotateLeftone = dynamicRotate(-1);rotateLeftOne (animals) console.log(animals); // [ 'koala', 'opossum, "kangaroo', 'wombat"]' ' '***************? function dynamicRotate(num) { // Your code here } /*****DO NOT MODIFY ANYTHING UNDER THIS LINE*****/ try { module.exports = dynamicRotate; } catch {…arrow_forwardComplete the code.arrow_forwardC++arrow_forward
- USING C lang: Create a simple Tic Tac Toe game designed for one player (against computer). you will need to create arrays and functions to complete this program. The first screen should ask the user for his name, print a welcome message, and display an empty 3x3 Tic Tac Toe board. Then, the program should ask the user to put the coordinates of his move. once the user enters the coordinates, the program should respond accordingly with a print of the user's move and the computer's move. this should go on until a winning pattern is found. Key steps: Game board is designed, user inputs taken and marked on the board, validate the inputs that no two inputs at the same place and out of range, check the winner/loser and complete the game.arrow_forwardC languagearrow_forwardC++ Do the following lab by an array(not vector) for 3 students find the average of a student by asking him how many grades do you have. The answer to this question, determine the size of the array(list of grades) and then ask the user to enter grades(the number of the grades is equal to the size of the array) then calculate the average for each student. Hence, you will calculate 3 averages. to calculate the average, use the array accumulator. Also when you get each grade validate it. validation for grade means that you check whether a grade is between 0 and 100. if the grade is negative or a grade is more than 100 then it is not valid and you have to ask the user to enter a grade again. Find the maximum and minimum grades for each student. Print the sorted list of the grades for each student. example: if grades user entered are: 60 78 98 23 45 then sorted list is:23 45 60 78 98arrow_forward
- In c++, Declare a constant “ SIZE = 5 ” Declare an array of ints , of size SIZE . Initializethat array to have the values 10, 12, 15, 19, 6 .– Write a loop that calculates and prints out the minimum value of the array.– Write a loop that calculates and prints out the maximum value of the array.– Write a loop that calculates and prints out the average value of the array.arrow_forwardTopic: Array covered in Chapter 7 Do not use any topic not covered in lecture. Write a C++ program to store and process an integer array. The program creates an array (numbers) of integers that can store up to 10 numbers. The program then asks the user to enter up to a maximum of 10 numbers, or enter 999 if there are less than 10 numbers. The program should store the numbers in the array. Then the program goes through the array to display all even (divisible by 2) numbers in the array that are entered by the user. Then the program goes through the array to display all odd (not divisible by 2) numbers in the array that are entered by the user. At the end, the program displays the total sum of all numbers that are entered by the user.arrow_forwardSummary In this lab, you use what you have learned about searching an array to find an exact match to complete a partially prewritten C++ program. The program uses an array that contains valid names for 10 cities in Michigan. You ask the user to enter a city name; your program then searches the array for that city name. If it is not found, the program should print a message that informs the user the city name is not found in the list of valid cities in Michigan. The file provided for this lab includes the input statements and the necessary variable declarations. You need to use a loop to examine all the items in the array and test for a match. You also need to set a flag if there is a match and then test the flag variable to determine if you should print the the Not a city in Michigan. message. Comments in the code tell you where to write your statements. You can use the previous Mail Order program as a guide. Instructions Ensure the provided code file named MichiganCities.cpp is…arrow_forward
- Write a function named rockPaperScissors. It should have one input:- An array with 2 elements, each representing a player in the game of Rock Paper Scissors.It should return one output- A scalar with the result of the game.For the purposes of this program, assume the following numerical code:- 1 is rock- 2 is paper- 3 is scissorsIn the game of Rock, Paper, Scissors, rock beats scissors, paper beats rock, and scissors bears paper. Ifplayers play the same object, the result is a tie.Your output should be:- The index of the winning player if there is a winner.- 0 if there is a tie- -1 if a player played an invalid object (a number that is not 1, 2, or 3)For example, if we called our function:result = rockPaperScissors([1 2]);result would be 2, as paper beats rock.If we called our functionresult = rockPaperScissors([3 2]);result would be 1 because scissors beats papearrow_forwardProgram in C++arrow_forwardC++ pleasearrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





