- Task 1 Character Search Write A Program That Reads A Sentence From The User And Then Proceeds To Ask The User To Enter 1 (95.57 KiB) Viewed 32 times
Task 1: Character Search Write a program that reads a sentence from the user and then proceeds to ask the user to enter
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Task 1: Character Search Write a program that reads a sentence from the user and then proceeds to ask the user to enter
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