Sunday 31 July 2016

Square Pattern in java

Question No:8 print Square
i/p: 5

* * * * *
*       *
*       *
*       *
* * * * *

import java.util.Scanner;

public class Square {

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

No comments:

Post a Comment

Featured post

All Logical Questions are Answered JumpInToIt