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 Raptorexpert 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 aeioand uomittedFor 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 inout parameters, as appropriate
ALL necessary values must be passed as parameters absolutely no global referencing
all nonparameter, local variables must be "declared" by initializing them at the beginning of their module
all nonparameter, local variables must be "declared" at the beginning of the lowest module possible.For example, if the variable numis only used in module getInputthen it should be declared in getInputHowever if the variable numis used in two modules that are both called from mainthen it should be declared in mainand passed as a parameter to each modules.
input validation must occur as it is input, that isthe 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 modules
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
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
