Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Print the following string in a specific format

Java Basic: Exercise-43 with Solution

Write a Java program to print the following string in a specific format (see the output).
Sample Output

Twinkle, twinkle, little star,
	How I wonder what you are! 
		Up above the world so high,   		
		Like a diamond in the sky. 
Twinkle, twinkle, little star, 
	How I wonder what you are

Pictorial Presentation:

Java: Print the following string in a specific format

Sample Solution:

Java Code:

public class Example43 {
	public static void main(String[] args) {
	
   System.out.println("\nTwinkle, twinkle, little star, \n\tHow I wonder what you are! \n\t\tUp above the world so high, \n\t\tLike a diamond in the sky. \nTwinkle, twinkle, little star, \n\tHow I wonder what you are!\n\n");
}
}

Sample Output:

Twinkle, twinkle, little star,                                         
        How I wonder what you are!                                     
                Up above the world so high,                            
                Like a diamond in the sky.                             
Twinkle, twinkle, little star,                                         
        How I wonder what you are!

Flowchart:

Flowchart: Java exercises: Print the following string in a specific format

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to input and display your password.
Next: Write a Java program that accepts an integer (n) and computes the value of n+nn+nnn.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe