Q:

Write a Java program to print the following string in a specific format

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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!

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now