Wednesday, 3 August 2016

Number Patterns

Question No:5
i/p: 5

12345

1234
123
12
1

import java.util.Scanner;

public class NumPatern {

    public static void main(String[] args) {
         Scanner sc=new Scanner(System.in);
            System.out.println("enter n value");
            int n=sc.nextInt();
            for(int i=1;i<=n;i++)
            {
                for(int j=1;j<=n-i+1;j++){
                     System.out.print(j);
                }
                System.out.println();
            }
    }
}

No comments:

Post a Comment

Featured post

All Logical Questions are Answered JumpInToIt