Question
String Play ( In Beginner Java Programming) Write a program using Scanner and its nextLine method. The following is an example of how to use
String Play ( In Beginner Java Programming)
Write a program using Scanner and its nextLine method. The following is an example of how to use nextLine
Scanner kybd = new Scanner(System.in);
System.out.println("Enter a line of text");
String aLine = kybd.nextLine();
You may assume that the user input has at least 7 characters.
Print either "the original String has no leading or trailing whitespace" or "the original String has leading or trailing whitespace." (Hint: the trim method will be a good start, but you'll need more.)
Swap the first three and last four characters of aLine and print the result.
Print aLine in all upper case.
Print the compareTo results of comparing aLine in all lower case with the original aLine. (This will be a number.)
Print whether the first half of aLine is the same as the last half of aLine except for case. If aLine has an odd number of characters, the first half and last half are to the left and right of the middle character.
Note: treat each of these steps as an independent action operating on the original input. So if the original input was
kilroy was here, but not godot
swapping the first three and last four characters would print
odotroy was here, but not gkil
and printing aLine in all upper case would result in
KILROY WAS HERE, BUT NOT GODOT
Step 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