Inverted Right-Angle
Example: Inverted Right-Angle Triangle Pattern using Stars
This pattern looks like this:
*****
****
***
**
*
Java Code to Print the Pattern:
public class InvertedPattern {
public static void main(String[] args) {
int n = 5; // You can ch...
yesamitsingh.hashnode.dev1 min read