
Explanation of Solution
Program code:
Main.java
//import the required packages
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
import java.io.PrintStream;
//define a class Main
public class Main
{
//define a method wordWrap2
public static void wordWrap2(Scanner Input, PrintStream out)
{
//declare a string variable
String line;
//iterate a while loop to get the lines
while(Input.hasNextLine())
{
//get the lines
line=Input.nextLine();
//new line
out.println();
//iterate a while loop
while (line.length() > 60)
{
//print the substrings of length 60
out.println(line.substring(0, 60));
//cut the string to substring of length 60
line = line.substring(60);
}
//print the lines
out.println(line);
}
}
//define the main() method
public static void main(String args[])throws FileNotFoundException
{
//create an object of Scanner
Scanner Input = new Scanner(System.in);
//call the method wordWrap2()
wordWrap2(Input,System.out);
}
}
Explanation:
The above snippet of code is used to create sub strings of length 60 with the statements as user given...

Want to see the full answer?
Check out a sample textbook solution
Chapter 6 Solutions
Building Java Programs: A Back To Basics Approach, Loose Leaf Edition (5th Edition)
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





