Giter VIP home page Giter VIP logo

Comments (24)

milan604 avatar milan604 commented on September 6, 2024

package pattern6;

/**
*

  • @author m-lan
    */
    public class Pattern6 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      for (int i = 0; i <=3; i++) {

       for (int j = 3; j > i; j--) {
           System.out.printf(" ");
         
       }
         for (int k = 0; k < i; k++) {
               System.out.printf("*");
           }
         
         for (int k = 1; k < i; k++) {
               System.out.printf("*");
           }
       System.out.println("");
      

      }
      }

}
screenshot from 2017-07-27 14-42-19

from java.

raBbn avatar raBbn commented on September 6, 2024

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package javaapplication19;

/**
*

  • @author Kishorr
    */
    public class JavaApplication19 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here

      for (i = 0; i <3; i++) {
      for (j = 3; j >i; j--) {
      System.out.print(" ");
      }
      for (j = 0; j <=i; j++) {
      System.out.print("");
      }
      for (j = 0; j <i; j++) {
      System.out.print("
      ");
      }
      System.out.println("");
      }
      }

}
capture20

from java.

jagdish4249 avatar jagdish4249 commented on September 6, 2024

package pattern8;

/**
*

  • @author jagdish
    */
    public class Pattern8 {

    /**

    • @param args the command line arguments
      /
      public static void main(String[] args) {
      // TODO code application logic here
      char x = '
      ';
      for (int i = 3; i >= 1; i--) {

       for (int j = 1; j <= 3; j++) {
           if(i>j)
               System.out.print(" ");
           else{
               
               System.out.print(x);
               
           }
       }
      
       
       for (int j = 2; j >= 1; j--) {
           if(i<=j){
             
               System.out.print(x);
           }
           
               
           
       }
       
       
       System.out.println("");
      

      }

    }

}

image

from java.

pujanchangubhari73 avatar pujanchangubhari73 commented on September 6, 2024

package forpattern8;

/**
*

  • @author Balkrsihna
    */
    public class ForPattern8 {

    /**

    • @param args the command line arguments
      /
      public static void main(String[] args) {
      for (int i = 1; i <=3; i++) {
      for (int j = 1; j<=5-i; j++)
      {
      System.out.printf(" ");
      }
      for(int a=1; a<=i; a++)
      {
      System.out.print("
      ");
      }

       for(int b=2; b<=i; b++)
       {
       System.out.print("*");
       }
         System.out.printf("\n");
      

    }
    }

}

image

from java.

sthaanu avatar sthaanu commented on September 6, 2024

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pattern12;

/**
*

  • @author admin
    */
    public class Pattern12 {

    /**

    • @param args the command line arguments
      /
      public static void main(String[] args) {
      for (int i = 1; i < 5; i++) {
      for (int j = 5; j > 0; j--) {
      if (j <= i) {
      System.out.print("
      ");
      } else {
      System.out.print(" ");
      }
      }

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

      }
      }

}
capture

from java.

karmi214 avatar karmi214 commented on September 6, 2024

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pattern12;

/**
*

  • @author Anish
    */
    public class Pattern12 {

    /**

    • @param args the command line arguments
      /
      public static void main(String[] args) {
      // TODO code application logic here
      for (int i = 1; i <= 4; i++) {
      for (int j = 4; j > 0; j--) {
      if(j<=i){
      System.out.print("*");
      }
      else{
      System.out.print(" ");
      }
      }
      for (int j = 2; j <=i; j++) {
      System.out.print("
      ");
      }
      System.out.println("");
      }
      }

}
p12

from java.

sajanbasnet75 avatar sajanbasnet75 commented on September 6, 2024

/*

To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
/
package assignment2;
/*
*

@author LORDsajan
*/
public class Assignment2 {

/**

@param args the command line arguments
/
public static void main(String[] args) {
// pattern12
System.out.println("\nPattern 12");
for (int i = 1; i <= 4; i++) {
for (int j = 1; j <= 4 - i; j++) {
System.out.print(" ");
}
for (int k = 1; k <= i; k++) {
System.out.print('*');
}
for (int k = 1; k < i; k++) {
System.out.print(" * ");
}
System.out.println(" ");

    }

}
}
12

from java.

syslin avatar syslin commented on September 6, 2024

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package daytwo;

/**
*

  • @author dell
    */
    public class DayTwo {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here

      //* * pattern 12/
      for (int i = 1; i <= 5; i++) {
      for (int j = 1; j <= 5 - i; j++) {
      System.out.print(" ");
      }

       for (int k = 1; k <= 2 * i - 1; k++) {
           System.out.print("*");
       }
      
       System.out.println();
      

      }
      }
      }
      output
      7

from java.

kajalmaharjan avatar kajalmaharjan commented on September 6, 2024

//PATTERN 7
for (int i = 0; i < 5; i++) {
for (int j = 0; j < 5 - i; j++) {
System.out.printf(" ");
}
for (int k = i; k > 0; k--) {
System.out.print("");
}
for (int j = 2; j <= i; j++) {
System.out.print("
");
}

        System.out.println(" ");
    }

image

from java.

kiir33 avatar kiir33 commented on September 6, 2024

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pattern3;

/**
*

  • @author KIRANN
    */
    public class Pattern3 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      int i, j;
      final int N = 5;
      System.out.println("Pattern 6\n----------------------");
      for (i = 0; i < N; i++) {
      for (j = N; j > i; j--) {
      System.out.print(" ");
      }

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

      }
      }
      }

Output:
capture

from java.

RakenShahi avatar RakenShahi commented on September 6, 2024

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package star6;

/**
*

  • @author DELL
    */
    public class Star6 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      int a=2;
      for (int i = 1; i <=5; i=i+2) {

       for (int k = 0; k < a; k++) {
               System.out.printf(" ");  
           }
       
       for (int j = 0; j < i; j++) {  
           System.out.printf("*");   
       }
       
       System.out.print("\n");
       a=a-1;        
      

      }
      }

}

OUTPUT
6

from java.

rabina12 avatar rabina12 commented on September 6, 2024
  • @author Albina Praz
    */
    public class Pt6 {

    /**

    • @param args the command line arguments
      /
      public static void main(String[] args) {
      // TODO code application logic here
      for (int i = 0; i < 5; i++) {
      for (int j = 0; j < 5 - i; j++) {
      System.out.print(" ");
      }
      for (int k = i; k > 0; k--) {
      System.out.print("
      ");
      }
      for (int j = 2; j <= i; j++) {
      System.out.print("*");
      }

       System.out.println(" ");
      

      }
      }

}
ptr6

from java.

rivab avatar rivab commented on September 6, 2024

System.out.println("Output of Q.No.12");
for (int i = 0; i < 4; i++) {
for (int j = 3; j > i; j--) {
System.out.print(" ");
}
for (int k = 0; k <= i; k++) {
System.out.print("#");

        }
       for (int k = 0; k < i; k++) {
            System.out.print("#");
        }
        System.out.println("");
    }

12

from java.

Roshantwanabasu avatar Roshantwanabasu commented on September 6, 2024

Code:
/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pattern7;

/**
*

  • @author NiiRosh
    */
    public class Pattern7 {

    /**

    • @param args the command line arguments
      /
      public static void main(String[] args) {
      // TODO code application logic here
      for (int i = 1; i <= 3; i++) {
      for (int j = 1; j <= (3 - i); j++) {
      System.out.printf(" ");
      }
      for (int k = 0; k < (2 * i - 1); k++) {
      System.out.printf("
      ");
      }

       System.out.println();
      

      }
      }

}
Output:
pattern7

from java.

duwalshraddha avatar duwalshraddha commented on September 6, 2024

Code
package pattern6;

/**
*

  • @author Lenovo
    */
    public class Pattern6 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      for (int i = 0; i < 3; i++) {
      for (int j = 0; j < 2 - i; j++) {
      System.out.print(" ");
      }

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

      }
      }
      }
      6

from java.

Rajjushrestha avatar Rajjushrestha commented on September 6, 2024

public static void main(String[] args) {
for (int i = 0; i < 4; i++) {
for (int j = 3; j > i; j--) {
System.out.print(" ");

        }
        for (int k = 0; k <= i; k++) {
            System.out.print("*");
        }

        for (int j = 0; j < i; j++) {
            System.out.print("*");

        }
        System.out.println(" ");
    }
    System.out.println("");

7

from java.

Sudan15423 avatar Sudan15423 commented on September 6, 2024

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package day3;

/**
*

  • @author dragon15423
    */
    public class Day3 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      for (int i = 1; i <= 4; i++) {
      for (int j = i; j <= 4; j++) {
      System.out.print(" ");
      }
      for (int k = i; k >= 1; k--) {
      System.out.print(" * ");
      }
      for (int j = 2; j <= i; j++) {
      System.out.print(" * ");
      }
      System.out.println();
      }
      }
      Output:
      12

from java.

bsnarnzt1 avatar bsnarnzt1 commented on September 6, 2024

package patterntwelve;

/**
*

  • @author User
    */
    public class PatternTwelve {

    /**

    • @param args the command line arguments
      /
      public static void main(String[] args) {
      for (int i = 1; i <= 4; i++) {
      for (int j = 5; j >= i; j--) {
      System.out.print(" ");
      }
      for (int k = 2; k <= i; k++) {
      System.out.print("
      ");
      }
      for (int l = 3; l <= i; l++) {
      System.out.print("*");
      }
      System.out.println(" ");
      }
      }
      }
      patt12

from java.

rituratnam avatar rituratnam commented on September 6, 2024

CODE:
package pattern12;

/**
*

  • @author Lavalesh
    */
    public class Pattern12 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      for (int i = 0; i < 4; i++) {
      for (int j = 3; j > i; j--) {
      System.out.print(" ");

      }
      for (int k = 0; k <= i; k++) {
      System.out.print("*");
      }

      for (int j = 0; j < i; j++) {
      System.out.print("*");

      }
      System.out.println(" ");
      }
      System.out.println("");
      }
      }
      Output:
      pattern12

from java.

ajay987 avatar ajay987 commented on September 6, 2024

for (int i = 1; i <= 4; i++) {
for (int j = 4 - i; j >= 1; j--) {
System.out.print(" ");
}
for (int k = 1; k <= (i * 2) - 1; k++) {
System.out.print("*");
}
System.out.println();
}
patt7sol

from java.

sarumdr avatar sarumdr commented on September 6, 2024

/*

  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pattern7;

/**
*

  • @author sarumdr
    */
    public class Pattern7 {

    /**

    • @param args the command line arguments
      /
      public static void main(String[] args) {
      // TODO code application logic here
      int i,j,k;
      for(i=1; i<=3; i++)
      {
      for(j=3; j>=i; j--)
      {
      System.out.print(" ");
      }
      for(k=1; k<=(2
      i-1); k++)
      {
      System.out.print("*");
      }
      System.out.println("");
      }
      }
      }

    }

}

OUTPUT
image

from java.

sanzeevtamang avatar sanzeevtamang commented on September 6, 2024

//Pattern 12
for (int i = 1; i <= 4; i++) {
for (int j = 4; j > 0; j--) {
if (j <= i) {
System.out.print("");
} else {
System.out.print(" ");
}
}
for (int j = 2; j <= i; j++) {
System.out.print("
");
}
System.out.println("");
}
Output:
capture

from java.

luckydivya avatar luckydivya commented on September 6, 2024
  • To change this license header, choose License Headers in Project Properties.
  • To change this template file, choose Tools | Templates
  • and open the template in the editor.
    */
    package pattern12;

/**
*

  • @author PC
    */
    public class Pattern12 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here

      for (int i = 0; i < 5; i++) {

       for (int j = 5; j > i; j--) {
           System.out.printf(" ");
       }
       for (int k = 0; k < i; k++) {
           System.out.printf("* ");
       }
       System.out.printf("\n");
      

      }
      }
      output
      pa12

from java.

ragenmah avatar ragenmah commented on September 6, 2024

package pattern7;

/**
*

  • @author ragen
    */
    public class Pattern7 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      for (int i = 0; i <=3; i++) {

       for (int j = 3; j > i; j--) {
           System.out.printf(" ");
         
       }
         for (int k = 0; k < i; k++) {
               System.out.printf("*");
           }
         
         for (int k = 1; k < i; k++) {
               System.out.printf("*");
           }
       System.out.println("");
      

      }
      }

}

Output
*
* * *


from java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.