Final answer:
The question asks for a program that reads an integer representing the number of words in a list, the words themselves, and a character, and then prints each word from the list that contains the character at least once. A sample Python script has been provided to illustrate how this can be achieved by iterating through the list and checking for the presence of the character in each word.
Step-by-step explanation:
To create a program that reads an integer, a list of words, and a character, where the integer indicates the number of words in the list, and the output displays every word containing the specified character at least once, you would typically use a programming language like Python. The task involves iterating through the list of words and checking if each word contains the character. Here is a simple example in Python:
# Read the integer
n = int(input('Enter the number of words: '))
# Read the list of words
word_list = []
for i in range(n):
word = input('Enter word #' + str(i+1) + ': ')
word_list.append(word)
# Read the character
c = input('Enter the character to search for: ')
# Output words containing the character
for word in word_list:
if c in word:
print(word)
This script prompts the user to input the number of words, the words themselves, and the character to search for. It then prints out any word that contains the character.