Pattern 2

 package nestedForLoop;


import java.util.Scanner;


public class Pattern2 {


public static void main(String[] args) {


Scanner sc = new Scanner(System.in);


int a = sc.nextInt();

for(int i=1; i<=a; i++) {

for(int j=1; j<=i; j++) {

System.out.print("x ");

}

System.out.println();

}

}

}

Comments

Popular posts from this blog

Type Casting

Arithmetic

Pattern 1