Write a Java program that will ask the user to enter a string then copy the given string to a char array(array of characters; please see sample code below). The program will then swap the first and last word in char array and store the result in another char array. The program should also meet the following requirements: It will display the original string and the new string(after swapping). • It will display the first and last word. Use of StringBuffer, StringBuilder, and String class after the string was copied to an array of characters is not allowed. Use of any String, StringBuilder, StringBuffer, and Array method is not allowed. It should execute for as long as the user wants to continue. Create and use this method in your program: displayArray() //display array Required: a. pseudocode b. source code with comments c. 2 sample runs Code to copy a string to an array of characters String str = new String(); System.out.print("Enter a string : "); str=in.nextLine(); n=str.length(); char[] ch = new char[n]; for(int i=0; i

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Problem:
Write a Java program that will ask the user to enter a string then copy the given string to a char array(array
of characters; please see sample code below). The program will then swap the first and last word in char
array and store the result in another char array.
The program should also meet the following requirements:
• It will display the original string and the new string(after swapping).
• It will display the first and last word.
• Use of StringBuffer, StringBuilder, and String class after the string was copied to an array of
characters is not allowed.
• Use of any String, StringBuilder, StringBuffer, and Array method is not allowed.
• It should execute for as long as the user wants to continue.
• Create and use this method in your program:
displayArray()
//display array
Required:
a. pseudocode
b. source code with comments
c. 2 sample runs
Code to copy a string to an array of characters
String str = new String();
System.out.print("Enter a string : ");
str=in.nextLine();
n=str.length();
char[] ch = new char[n];
for(int i=0; i<str.length(); i++) //copy string to char array ch
ch[ij=str.charAt(i);
/no string object is allowed after this line
Transcribed Image Text:Problem: Write a Java program that will ask the user to enter a string then copy the given string to a char array(array of characters; please see sample code below). The program will then swap the first and last word in char array and store the result in another char array. The program should also meet the following requirements: • It will display the original string and the new string(after swapping). • It will display the first and last word. • Use of StringBuffer, StringBuilder, and String class after the string was copied to an array of characters is not allowed. • Use of any String, StringBuilder, StringBuffer, and Array method is not allowed. • It should execute for as long as the user wants to continue. • Create and use this method in your program: displayArray() //display array Required: a. pseudocode b. source code with comments c. 2 sample runs Code to copy a string to an array of characters String str = new String(); System.out.print("Enter a string : "); str=in.nextLine(); n=str.length(); char[] ch = new char[n]; for(int i=0; i<str.length(); i++) //copy string to char array ch ch[ij=str.charAt(i); /no string object is allowed after this line
Expert Solution
steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY