Question: Make this as a working program in Raptor ( expert answering this question please make it in raptor I do not need it in word

Make this as a working program in Raptor(expert answering this question please make it in raptor I do not need it in word form I need to see how it looks completed). Create in Raptor (no special language, done solely through Raptor).
Write a Raptor program that will obtain a text string as user input.It can be of any length, from a single character word to a sentence.
After the user has finished entering the string, your program should output the string with all vowels (a,e,i,o,and u)omitted.For example, if the user input:
"What is going on here?".
Then the output would be:
"Wht s gng n hr?".
Other Specifications:
create your solution in Raptor
create separate modules for input, processing, and output
use subcharts, procedures, and in/out parameters, as appropriate
ALL necessary values must be passed as parameters --absolutely no global referencing
all non-parameter, local variables must be "declared" by initializing them at the beginning of their module
all non-parameter, local variables must be "declared" at the beginning of the lowest module possible.For example, if the variable numis only used in module getInput(),then it should be declared in getInput().However, if the variable numis used in two modules that are both called from main(),then it should be declared in main()and passed as a parameter to each modules.
input validation must occur as it is input, that is,the user must not be allowed to continue to enter more values until the value they have already input is validated.(Note that the only requirement on the input is that there is some.)
perform calculations in the appropriate processing module(s)
perform output and its formatting in the output module
display the final formatted message in the output module

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 Programming Questions!