Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that reads from standard input a sequence of whitespace - separated 'words'. The program should output each word on its own line,

Write a program that reads from standard input a sequence of whitespace-separated 'words'. The program should output each word on its own line, but only including the characters that are equal or adjacent in the ASCII table. For example, the character 'l' has an ASCII value of 105, and it should be included in the output only if it is next to an h(104), an i (105), or a j (106). In your solution, you must use a void function named FilterNeighbors, that takes in a string, and filters it based on the problem specification.
Example InDut:
Expected Output:
hikktBraaa
The first 'a' isn't in the output because its only neighbor (h) is not adjacent to it in the ASCII table. The 'h' and the 'i' are adjacent in the table so they are outputted. The 'k's are equal to each other, so they are also outputted. And so on.
Example Input:
23321 gbsyfbjlbsadfoebw ./-$$1&%aAJ
{1}::k?
Expected Output:
23321
.??$$8%
{|}:
Remember that there are lots of characters in ASCII beyond just letters. The "gbsyfbjlbsadfoebw" word contains to letters that are adjacent in the word and in the table, so its line is empty.
When writing your program, you may only use concepts you have learned in the course thus far.
Your program should compile and run.
The formatting must match exactly as shown in the example above, including whitespaces.
Write in c++
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

BPR always involves automation. Group of answer choices True False

Answered: 1 week ago