The student's programming assignment.
Submit the flowchart in Flowgorithm that solves the following exercise.
Title: Word Search Program
Description: This program is designed to allow users to search for a specific word within an array of words. It prompts the user to input five words into an array and then prompts the user to enter a word to search for within that array. The program then searches through the array to find if the entered word exists and displays its position if found.
Flowchart Overview:
1. Start
2. Initialize variables: 'i', 'words' array, 'found', and 'findWord'.
3. Enter a loop to input five words into the 'words' array.
4. Prompt the user to enter a word and store it in the current position of the array.
5. Increment 'i' by 1 and repeat the loop until all five words are entered.
6. Prompt the user to enter the word to search for.
7. Enter a loop to search for the entered word within the 'words' array.
8. If the word is found, display its position in the array.
9. If the word is not found, display a message indicating it does not exist.
10. End
My email address: [email protected]
Link to Source Code: https://drive.google.com/file/d/1qO_AtIy7-U5yC9xaojzO2hlWEXzt9gB9/view?usp=sharing
#SolveMyProgrammingTask
#flowgorithm