Giter VIP home page Giter VIP logo

Comments (24)

milan604 avatar milan604 commented on September 6, 2024

Pattern 3
package pattern3;

/**
*

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

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      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.println("");
      

      }
      }

}

Output
screenshot from 2017-07-27 13-53-30

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 javaapplication14;

/**
*

  • @author Kishorr
    */
    public class JavaApplication14 {

    /**

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

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

       for (int j = 1; j <= 5; j++) {
           if (j <= 5 - i) {
               System.out.printf(" ");
           } else {
               System.out.printf("*");
           }
       }
       System.out.println("");
      

      }
      }

}
capture3

from java.

jagdish4249 avatar jagdish4249 commented on September 6, 2024

package pattern3;

/**
*

  • @author jagdish
    */
    public class Pattern3 {

    /**

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

      for (int i = 5; i >= 1; i--) {
       
       for (int j = 1; j <= 5; j++) {
       if(i>j)
           System.out.print(" ");
       else
       System.out.print("*");
      
       }
      

      System.out.println("");
      }

    }

}

image

from java.

pujanchangubhari73 avatar pujanchangubhari73 commented on September 6, 2024

package forpattern5;

/**
*

  • @author Balkrsihna
    */
    public class ForPattern5 {

    /**

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

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

      }
      }

}

image

from java.

maheshyakami avatar maheshyakami 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 pattern;

/**
*

  • @author mahesh
    */
    public class Pattern {

    /**

    • @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 = 0; k <= i; k++) {
      System.out.print("
      ");
      }
      System.out.println();
      }
      System.out.println();
      }

}
screen shot 2017-07-27 at 5 03 07 pm

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 pattern4;

/**
*

  • @author admin
    */
    public class Pattern4 {

    /**

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

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

}
capture

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) {
// pattern4
System.out.println("\nPattern4");
for (int i = 1; i <= 5; i++) {
for (int k = 1; k <= 5 - i; k++) {
System.out.print(" ");
}
for (int j = 1; j <= i; j++) {
System.out.print("*");
}
System.out.println(" ");
}
}
}
4

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 pattern4;

import java.awt.BorderLayout;

/**
*

  • @author Anish
    */
    public class Pattern4 {

    /**

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

}
p4

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 patterntwo;

/**
*

  • @author dell
    */
    public class PatternTwo {

    /**

    • @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 = 0; k < i; k++) {
      System.out.print("
      ");
      }
      System.out.println();
      }

    }
    }
    output
    3

from java.

bsnarnzt1 avatar bsnarnzt1 commented on September 6, 2024

package pattfour;

/**
*

  • @author User
    */
    public class PattFour {

    /**

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

Output:
patt4

from java.

rabina12 avatar rabina12 commented on September 6, 2024
    System.out.println("-----------Pattern 4\n----------------------");
    for (int i = 0; i < 5; i++) {
        for (int j = 5; j > i; j--) {
            System.out.print(" ");
        }
        for (int j = 0; j <= i; j++) {
            System.out.print("*");
        }
        System.out.println("");
    }

capture3

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 star4;

/**
*

  • @author DELL
    */
    public class Star4 {

    /**

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

       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
4

from java.

rituratnam avatar rituratnam commented on September 6, 2024

CODE:
/**
*

  • @author Lavalesh
    */
    public class Pattern4 {

    /**

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

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

      for (int j = i; j>0 ; j--) {
      System.out.print("*");
      }
      System.out.println("");

      }
      }
      }
      Output:
      pattern4

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 pattern3;

/**
*

  • @author NiiRosh
    */
    public class Pattern3 {

    /**

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

       }
       for (int j = 4; j >= i; j--) {
           System.out.printf("*");
      
       }
       System.out.println("");
      

      }
      }

}
Output:
pattern3

from java.

duwalshraddha avatar duwalshraddha commented on September 6, 2024

Code
package pattern4;

/**
*

  • @author Lenovo
    */
    public class Pattern4 {

    /**

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

       for (int j = 5; j >= 6 - i; j--) {
           System.out.print("*");
       }
       System.out.println("");
      

      }
      }

}
3

from java.

Rajjushrestha avatar Rajjushrestha commented on September 6, 2024

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

from java.

sanzeevtamang avatar sanzeevtamang commented on September 6, 2024

Code:
package pattern4;

/**
*

  • @author Eev
    */
    public class PatterN4 {

    /**

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

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

      }
      }

}
Output:
pattern 4

from java.

Roshanshrestha7 avatar Roshanshrestha7 commented on September 6, 2024

public class Ass1 {

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

// TODO code application logic here
}

}

image

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 <= 5; i++) {
      for (int j = i; j <= 4; j++) {
      System.out.print(" ");
      }
      for (int j = 1; j <= i; j++) {
      System.out.print("
      ");
      }
      System.out.println();
      }
      }
      Output:
      4

from java.

ajay987 avatar ajay987 commented on September 6, 2024

for (int i = 5; i > 0; i--) {
for (int j = i; j > 1; j--) {
System.out.print(" ");

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

patt3sol

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 pattern4;

/**
*

  • @author sarumdr
    */
    public class Pattern4 {

    /**

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

           System.out.print("*");
       }
      
       System.out.printf("\n");
      

      }
      }

}
pattern4

from java.

SusanCB avatar SusanCB 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 pat4;

/**
*

  • @author nissus
    */
    public class Pat4 {

    /**

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

       }
       System.out.println("");
      

      }
      // TODO code application logic here
      }

}
pat4

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 pattern4;

/**
*

  • @author PC
    */
    public class Pattern4 {

    /**

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

output

from java.

ragenmah avatar ragenmah commented on September 6, 2024

package pattern3;

/**
*

  • @author ragen
    */
    public class Pattern3 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      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.println("");
      

      }
      }

}

Output
fullscreen capture 7312017 51830 pm

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.