What is the easiest way to code an inverted pyramid?
Take the exact code used for a normal pyramid, and simply change the outer loop to count down from N to 1 instead of 1 to N.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in Inverted Pyramid Star Pattern Logic
If counting rows 1 to N, the leading spaces increase according to the formula: row - 1.
If counting rows 1 to N, the stars decrease according to the formula: 2 * (N - row) + 1.
Trailing spaces exist on the right side of the stars, but since there are no visible characters after them, printing a newline immediately achieves the exact same visual result and saves CPU cycles.
Still have questions?
Browse all our FAQs or reach out to our support team
