SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
Stuart Reges, Marty Stepp
Chapter:
Introduction To Java Programming
Exercise:
Exercises
Question:13 | ISBN:9780136091813 | Edition: 2

Question

Write a program that prints the following line of output 1000 times:

You should not write a program that uses 1000 lines of source code; use methods to shorten the program. What is the shortest program you can write that will produce the 1000 lines of output, using only the material from this chapter?

 

TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Answer

/******************************************************************************
Write a program that prints the following line of output 1000 times:
All work and no play makes Jack a dull boy.
You should not write a program that uses 1000 lines of source code; 
use methods to shorten the program. 
What is the shortest program you can write that will produce the 1000 lines of output,
using only the material from this chapter?
*******************************************************************************/
public class Main
{
	public static void main(String[] args)
	{
	    thousandTimes();
		
	}

    public static void tenTimes()
    {
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
        System.out.println("All work and no play makes Jack a dull boy.");
    }
    public static void hundredTimes()
    {
        tenTimes();
        tenTimes();
        tenTimes();
        tenTimes();
        tenTimes();
        tenTimes();
        tenTimes();
        tenTimes();
        tenTimes();
        tenTimes();
        
    }
    
    public static void thousandTimes()
    {
        hundredTimes();
        hundredTimes();
        hundredTimes();
        hundredTimes();
        hundredTimes();
        hundredTimes();
        hundredTimes();
        hundredTimes();
        hundredTimes();
        hundredTimes();
       
    }
    
}

Output display result:

All work and no play makes Jack a dull boy.
All work and no play makes Jack a dull boy.
All work and no play makes Jack a dull boy.
All work and no play makes Jack a dull boy.
....
....
.....(1000 times print)

Youtube link:

https://youtu.be/jeTiviTJlkI

 

0 0

Discussions

Post the discussion to improve the above solution.