Answered step by step
Verified Expert Solution
Question
1 Approved Answer
JAVA: 3rd Problem: write an app to shorten text messages that are over 10 characters long. essage is over 10 characters, following rules will work
JAVA:
3rd Problem: write an app to shorten text messages that are over 10 characters long. essage is over 10 characters, following rules will work to shorten the messages: 1. eliminate vowels, unless a word starts with a vowel 2. eliminate repeated letters in a word Show how many character have been eliminated with your app. ad in a line of text as one String, convert it to lowercase letters, and check the length; when it is over 10 characters get a character 1 by 1 (you might need an extra variable to help you with this) and ignore the 1st character of a word if it is a vowel . if the character is a vowel and not the 1st character, do not use the character and increment the value that is counting the replacements if the character is a repeating character, do not use the character and increment the value that is counting the replacementsStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started