Question: Please help me with this C programming! Due date: before your own lab session in the week starting Mar 4. Goal of this assignment: get

Please help me with this C programming!Please help me with this C programming! Due date: before your own

Due date: before your own lab session in the week starting Mar 4. Goal of this assignment: get familiar with Arrays and Functions, practice pseudocode, problem-solving methodologies, the translation of pseudocode to C program and test C programs. Use make your pseudo and C-program correct, bottom up approac h when you edit and test your program. Pay also attention to Submission Submit ONE C file and one report in WORD file with the given format. . Requirement Write pseudocode and translate it to ONE C-program for the following problem. I. Ask the user to input a series of integers which are in increasing order (i.e., an integer is NOT smaller than the one immediately before it). The input will end with the number 0. Assume users will never input more than 10 integers before input 0. After a user inputs all the numbers (including the "terminator" 0), ask the user to input another numberm. Finally print to screen if the number m is in the series. Here is an example of an execution of your program: (the underlined are user inputs): input a series of integers (ended with 0): Input a number to find from the series: 9 The number 9 is not in the series you gave 20 0 You have to use an array to store the input numbers. You have to use the search method discussed in class on how to find the given number (9 in the example above) from the given series. For the subtask/subprogram of storing the series into an array you must write and use the following function: Function name: getSeries input a: an array of integers output n: the number of integers the user has entered from the keyboard. side effect: alO], a..., an-1] hold the series user entered. Plan II fill the plan (you may reuse your work in previous lab assignment here) Instead of copying pseudocode (e.g., for search) from lecture notes, it will be most useful if you can reproduce the pseudo from the understanding of the problem and the problem- solving methodologies. Both your pseudocode and C-program should work correctly

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!