Question: 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
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 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 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.
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 modules
perform output and its formatting in the output module
display the final formatted message in the output module
all flowchart symbols must be commented appropriately
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
