Assignment 1 Task 1 Shafil Ahmed 2231927042

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

package practice;

public class Practice {

public static void main(String[] args) {


Scanner sc = new Scanner(System.in);

for (int i = 5; i >= 1; i--) {


for (int j = 1; j <= i; j++) {
System.out.print(j + " ");
}
System.out.println();
}

You might also like