1. Write a program that asks the user to enter a letter. Then it generates a random number between 1 and 10 and prints out the letter that many times. 2. In the game Yahtzee, players roll five dice. A Yahtzee is when all five dice are the same. Write a program that simulates rolling five 10,000 times and counts how many Yahtzees occur. Print out what percentage of the rolls come out to be Yahtzees. 3. Write a program that asks the user to enter a sentence, removes all the spaces from the sentence, converts the remainder to uppercase, and prints out the result. 4. Write a program that asks the user to enter a string. If the string is at least five characters long, then create a new string that consists of the first five characters of the string along with three asterisks at the end. Otherwise add enough exclamation points (!) to the end of the string in order to get the length up to five. 5. Write a program that ask the user to enter a string that consists of multiple words. Then print out the first letter of each word, all on the same line.