Computer Applications
Write a program to accept a word (say, BLUEJ) and display the pattern:
B L U E J
L U E J
U E J
E J
J
Java
Java String Handling
37 Likes
Answer
import java.util.Scanner;
public class KboatStringPattern
{
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
System.out.print("Enter a word: ");
String word = in.nextLine();
int len = word.length();
for (int i = 0; i < len; i++) {
for (int j = i; j < len; j++) {
char ch = word.charAt(j);
System.out.print(ch);
}
System.out.println();
}
}
}
Variable Description Table
Program Explanation
Output
Answered By
14 Likes
Related Questions
Write a program to display the pattern:
A B C D E
B C D E
C D E
D E
EWrite a program to display the pattern:
A
B C
D E F
G H I J
K L M N OWrite a program to accept a word (say, BLUEJ) and display the pattern:
B L U E J
B L U E
B L U
B L
BWrite a program to accept a word (say, BLUEJ) and display the pattern:
J
E E
U U U
L L L L
B B B B B