Task 1: Character Search Write a program that reads a sentence from the user and then proceeds to ask the user to enter
Posted: Fri Jul 08, 2022 6:15 am
Task 1: Character Search Write a program that reads a sentence from the user and then proceeds to ask the user to enter a character. Your program should then print out all the words in the sentence that start with the given character and the number of such words. Sample Interaction: Enter a sentence: Hello World, this is Tom Clancy! Enter a character: t Words starting with t in the sentence are: this Tom Number of words starting with 't': 2 Task 2: Order Strings Write a program that takes three strings from user and prints them out in descending order. Sample Interaction: Enter 3 strings: Bob Alice Carol Strings in descending order: Carol Bob Alice