Java Reverse Alphabet Pattern (Diagonal Star)

Beginner
6 min read
Updated: Sep 2026
3 programs
Live preview

What Is This Pattern?

A reverse alphabet with diagonal star prints each row as letters from the top letter down to A, but replaces exactly one cell with * where the row key equals the column letter (i == j).

Remember
Rule: print j from top..A; when i == j print '*' instead

EDCB*
EDC*A
ED*BA
E*CBA
*DCBA     ← top = E (star slides right → left)

Outer i walks A..E (which letter becomes the star). Inner j walks E..A (what would print in each column). The match slides the star one column left each row.

How to Solve It

Nested char loops plus one equality test — print a star on the diagonal, the column letter everywhere else.

MethodIdeaBest for
Reverse columnsInner j from top..A; star slides right → leftMain pattern, interviews
Forward columnsInner j from A..top; star slides left → rightComparing diagonal directions

Pseudocode

Pseudocode
for i from 'A' to top:
    for j from top down to 'A':
        if i == j:
            print '*'
        else:
            print j
    print newline

Cheat sheet

GoalPattern
Row key (which letter is *)for (char i = 'A'; i <= top; i++)
Reverse columnsfor (char j = top; j >= 'A'; j--)
Diagonal testSystem.out.print(i == j ? '*' : j);
Forward columnsfor (char j = 'A'; j <= top; j++)
End the rowSystem.out.println();
A–Z-safe topRequire a single letter A–Z

Printing Letters vs Starting a New Line

APIEffectUse for
System.out.printStays on the same lineEach cell (* or letter)
System.out.printlnEnds the current lineAfter the inner column loop

Print characters without a newline, then end the row once.

Live Preview

Change the top letter and the reverse diagonal-star grid updates instantly — including size and star path.

Enter one letter A–Z. Grid size is n × n where n = top - 'A' + 1.

Live result top E · 5×5 · star right→left
EDCB*
EDC*A
ED*BA
E*CBA
*DCBA

Worked Walkthrough — top = 'E'

Trace each row key i, where i == j fires, and the printed line.

iColumns jStar atPrinted row
AE D C B Arightmost (A)EDCB*
BE D C B Acolumn BEDC*A
CE D C B Acolumn CED*BA
DE D C B Acolumn DE*CBA
EE D C B Aleftmost (E)*DCBA

Exactly one * per row. As i climbs A→E, the match moves left through the reverse letter scan.

Java Programs

Three complete programs: fixed top E, top-letter input, and a forward-column contrast. Use View Output to reveal sample results.

Example 1 — Fixed Top E

Outer i runs A..E. Inner j runs E..A. When i == j, print *; otherwise print j.

Java
public class ReverseDiagonalStar {
    public static void main(String[] args) {
        for (char i = 'A'; i <= 'E'; i++) {
            for (char j = 'E'; j >= 'A'; j--) {
                if (i == j)
                    System.out.print("*");
                else
                    System.out.print(j);
            }
            System.out.println();
        }
    }
}

How It Works

1. Outer loop picks the star letter. i takes A, B, C, D, E — the letter that becomes * on that row.

2. Inner loop prints reverse letters. j scans E..A. When i == j, print *; otherwise print j.

3. Star slides left. Row A matches at the right (EDCB*); row E matches at the left (*DCBA).

Example 2 — Top Letter Input

Read the top letter (like E or D) and generate the same pattern for A..top. Prefer validating a single A–Z character in real apps.

Java
import java.util.Scanner;

public class ReverseDiagonalStarInput {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        System.out.print("Enter the top letter (like E): ");
        char top = sc.next().charAt(0);

        for (char i = 'A'; i <= top; i++) {
            for (char j = top; j >= 'A'; j--) {
                System.out.print(i == j ? '*' : j);
            }
            System.out.println();
        }

        sc.close();
    }
}

How It Works

1. Same diagonal rule. Only the bounds follow top instead of the literal 'E'.

2. Ternary form. i == j ? '*' : j is the compact version of the if/else in Example 1.

3. Safer input tip. Prefer a single uppercase letter:

Safer input
String raw = sc.nextLine().trim();
if (raw.length() != 1) {
    System.out.println("Enter one letter A–Z.");
    return;
}
char top = Character.toUpperCase(raw.charAt(0));
if (top < 'A' || top > 'Z') {
    System.out.println("Enter one letter A–Z.");
    return;
}

Example 3 — Forward A..E with Diagonal *

Flip the inner loop to A..E. The star now slides left → right on the main diagonal.

Java
public class ForwardDiagonalStar {
    public static void main(String[] args) {
        for (char i = 'A'; i <= 'E'; i++) {
            for (char j = 'A'; j <= 'E'; j++) {
                System.out.print(i == j ? '*' : j);
            }
            System.out.println();
        }
    }
}

How It Works

1. Same diagonal test. i == j still marks exactly one cell per row.

2. Column order flips. Printing A..E instead of E..A reverses letter order and sends the star left → right.

3. Compare with Example 1. Inner-loop direction controls both the letter sequence and which way the star travels.

Edge Cases & Pitfalls

Check these before calling the solution done.

Wrong compare

No diagonal

Comparing row index to column index (ints) instead of i == j (chars) will not mark the letter diagonal correctly.

Always print j

Missing star

Forgetting the i == j branch prints a plain reverse (or forward) letter square with no asterisk.

println early

Broken row

Call println only after the inner loop. Inside it, each cell lands on its own line.

top = 'A'

Single *

Output is just * on one line — a good sanity check.

Lowercase

Unexpected range

Normalize input with Character.toUpperCase so e behaves like E.

Empty input

charAt crash

sc.next().charAt(0) fails on empty input. Validate length before taking the character.

Time and Space Complexity

ProgramTimeExtra space
Reverse / forward formsO(n²)O(1)

For top letter with offset n = top - 'A' + 1, the nested loops print an n × n grid — quadratic in n.

Key Takeaways

  • Diagonal rule: print * when i == j; otherwise print the column letter.
  • Reverse scan: inner j from top..A sends the star right → left.
  • Direction flip: A..top columns reverse the letter order and the star path.
  • Complexity: O(n²) time for an n × n grid; O(1) extra space.

One line: for each row key i, print reverse letters and replace the cell where i == j with *.

Frequently Asked Questions

i walks A..E down the rows while j scans E..A across columns. The condition i == j marks one diagonal position per row, which gets replaced by '*'.
Because i increases each row, but the printed letters go from E down to A across the row. The match i==j occurs at a different column each time, sliding the star left.
The star prints when i == j, so each row replaces exactly one character at the matching column.
Yes. Replace '*' with any symbol (like '#' or '@') in the conditional branch.
System.out.print stays on the same line for each cell. System.out.println ends the row after the inner loop finishes.
You print forward letters instead of E..A, and the star slides the other way (left to right on the main diagonal).
O(n²) for an n×n letter grid because every row prints n characters.
Read a string, take the first character, require A–Z (or a–z), and reject empty input. Cap at Z if you only want alphabetic ranges.

Did you know?

The diagonal is defined by i == j while the row prints letters from E down to A. Since i increases A..E each row, the star moves one position left each line: EDCB*, EDC*A, ED*BA, E*CBA, *DCBA.

Next: Palindromic Alphabet Pyramid

Ascending then descending letters on each centered row.

Program 18 tutorial →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

12 people found this page helpful