Showing posts with label Star Patterns. Show all posts
Showing posts with label Star Patterns. Show all posts

Wednesday, 3 August 2016

Star Pattern

Question No:6
i/p: 5

    *

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


import java.util.Scanner;

public class StarPatern {

    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 sp=1;sp<=n-i;sp++){
                    System.out.print(" ");
                }
                for(int j=1;j<=2*i-1;j++){
                     System.out.print("*");
                }
                System.out.println();
            }
              
        }
}

Star Pattren

Question No:5
i/p: 5

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


import java.util.Scanner;

public class StarPatern {

    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 sp=1;sp<=n-i;sp++){
                System.out.print(" ");
            }
            for(int j=1;j<=i;j++){
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

Star Pattern

Question No:3
i/p: 5

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


import java.util.Scanner;

public class StarPatern {

    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 sp=1;sp<=i-1;sp++){
                System.out.print(" ");
            }
            for(int j=1;j<=n-i+1;j++){
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

Star Pattern

Question No:4
i/p: 5

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



import java.util.Scanner;

public class StarPatern {

    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<=i;j++){
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

Star Pattern

Question No:2
i/p: 5

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



import java.util.Scanner;
 

public class StarPatern {

    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("*");
            }
            System.out.println();
        }
    }
}

Star Pattern

Question No:1
i/p: 5

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


import java.util.Scanner;

public class StarPatern {

    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;j++){
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

Tuesday, 2 August 2016

Star Triangle Pattern

Question No:7
i/p: 5

    *

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


import java.util.Scanner;

public class TriangleStar {

    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 sp=1;sp<=n-i;sp++){
                System.out.print(" ");
            }
            for(int j=1;j<=2*i-1;j++){
                if(j%2!=0)
                    System.out.print("*");
                else
                    System.out.print(" ");
            }
            System.out.println();
        }
           
    }
}

Featured post

All Logical Questions are Answered JumpInToIt