Question: Create this program in Raptor ( no special language, done solely through Raptor ) . I do not need explanations, need to see this done

Create this program in Raptor (no special language, done solely through Raptor). I do not need explanations, need to see this done as a flowchart in Raptor please.
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 num is only used in module getInput(), then it should be declared in getInput(). However, if the variable num is 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.

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!