7.12 LAB: Contains the character
Write a program that reads a character, then reads in a list of words. The output of the program is every word in the list that contains the
character at least once. Assume at least one word in the list will contain the given character.
Ex: If the input is:
hello Zoo sleep drizzle
the output is:
zoo
drizzle
Keep in mind that the character 'a' is not equal to the character "A".

Respuesta :

Answer:there is Java program and C++ program

Explanation:

Answer:

The solution code is written in Python 3

  1. input_char = input("Enter a character: ")
  2. sentence = input("Enter a sentence: ")
  3. word_list = sentence.split(" ")
  4. for word in word_list:
  5.    for c in word:
  6.        if(c == input_char):
  7.            print(word)
  8.            break  

Explanation:

Firstly, use the input function to get a input character and sentence from user (Line 1 - 2)

Next, use the split method to divide the sentence into a list of individual words using single space as the delimiter (Line 4).

Create an outer for loop to traverse each word in the word_list and create another inner loop to traverse each character in the word and check if there is any character match with the input character. If so print the word and terminate the inner loop and proceed to the next round of the outer loop.

After finishing the loop, all the relevant words will be printed.

ACCESS MORE
EDU ACCESS
Universidad de Mexico