Giter VIP home page Giter VIP logo

Comments (25)

raBbn avatar raBbn commented on July 30, 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 javaapplication25;

/**
*

  • @author Kishorr
    */
    public class JavaApplication25 {

    /**

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

           }
           else
           {
            if(j%2==1)
           System.out.print(" ");
           else
               System.out.print("*");
      
           }
       }
       System.out.println("");
      

      }
      }

}
capture6

from java.

milan604 avatar milan604 commented on July 30, 2024

package pattern7;

/**
*

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

    /**

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

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

      }

    }
    }
    screenshot from 2017-07-27 14-46-16

from java.

jagdish4249 avatar jagdish4249 commented on July 30, 2024

package pattern9;

/**
*

  • @author jagdish
    */
    public class Pattern9 {

    /**

    • @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{
               if((i%2==0 && j%2==0) || (i%2==1 && j%2==1) )
                   System.out.print(x);
               else
                   System.out.print(" ");
           }
       }
      
       
       for (int j = 2; j >= 1; j--) {
           if(i<=j){
             if(i%2==0 && j%2==0 || i%2==1 && j%2==1 )
               System.out.print(x);
             else
                 System.out.print(" ");
           }
           
               
           
       }
       
       
       System.out.println("");
      

      }
      }

}

image

from java.

maheshyakami avatar maheshyakami commented on July 30, 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 07 58 pm

from java.

karmi214 avatar karmi214 commented on July 30, 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 pattern13;

/**
*

  • @author Anish
    */
    public class Pattern13 {

    /**

    • @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){
      if ((i+j)%2==0) {
      System.out.print(" * ");
      } else {
      System.out.print(" ");
      }

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

      }
      }

}
p13

from java.

sajanbasnet75 avatar sajanbasnet75 commented on July 30, 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) {
// pattern13
System.out.println("\nPattern 13");
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(" *");
}
System.out.println(" ");

    }

}
}
13

from java.

kajalmaharjan avatar kajalmaharjan commented on July 30, 2024

//PATTERN 13
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");
}
image

from java.

rabina12 avatar rabina12 commented on July 30, 2024
  • @author Albina Praz
    */
    public class P6 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      System.out.println("\nPattern 13");
      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(" *");
      }
      System.out.println(" ");
      }
      }

}
pt6

from java.

kiir33 avatar kiir33 commented on July 30, 2024

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

Output:

capture

from java.

rivab avatar rivab commented on July 30, 2024
    System.out.println("Output of Q.No.13");        
      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("* ");
        }

System.out.println("");
}

13

from java.

syslin avatar syslin commented on July 30, 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 paterrn;

/**
*

  • @author dell
    */
    public class Paterrn {

    /**

    • @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 = 5; j > i; j--) {
      System.out.print(" ");
      }

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

      }
      }
      }
      output
      6

from java.

Roshantwanabasu avatar Roshantwanabasu commented on July 30, 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 pattern6;

/**
*

  • @author NiiRosh
    */
    public class Pattern6 {

    /**

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

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

      }
      }

}
Output:
pattern6

from java.

Rajjushrestha avatar Rajjushrestha commented on July 30, 2024

public static void main(String[] args) {
for (int i = 0; i < 4; 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");
        
    }

6

from java.

Roshanshrestha7 avatar Roshanshrestha7 commented on July 30, 2024

public class Ass6 {

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

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

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

            System.out.print("*");
        }
        System.out.print("\n");
    }
    // TODO code application logic here
}

}
image

from java.

Sudan15423 avatar Sudan15423 commented on July 30, 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 = 5; j >= i; j--) {
      if (i == j || i == 1) {
      System.out.print("7");
      } else {
      System.out.print(" ");
      }
      }
      System.out.println();
      }
      }
      Output:
      13

from java.

 avatar commented on July 30, 2024

package patternten.pkg3;

/**
*

  • @author User
    */
    public class PatternTen3 {

    /**

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

from java.

rituratnam avatar rituratnam commented on July 30, 2024

CODE:
package patternn;

/**
*

  • @author Lavalesh
    */
    public class Patternn {

    /**

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

    }
    }
    }
    Output:
    patternn6

from java.

RakenShahi avatar RakenShahi commented on July 30, 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 star.pkg7;

/**
*

  • @author DELL
    */
    public class Star7 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      // TODO code application logic here
      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 = j + 2) {
           System.out.printf("* ");
       }
      
       System.out.print("\n");
       a = a - 1;
      

      }
      }

}

OUTPUT
7

from java.

ajay987 avatar ajay987 commented on July 30, 2024

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

patt6sol

from java.

duwalshraddha avatar duwalshraddha commented on July 30, 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 = 1; i <= 3; i++) {
      for (int j = 3; j >= i; j--) {
      System.out.printf(" ");
      }
      for (int k = 0; k < i; k++) {
      System.out.printf("
      ");
      }
      System.out.printf("\n");
      }
      }
      61

from java.

sarumdr avatar sarumdr commented on July 30, 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 pattern10;

/**
*

  • @author sarumdr
    */
    public class Pattern10 {

    /**

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

       }
       for (k = 1; k <= i; k++) {
           if (k % 2 == 0) {
               System.out.print(" ");
           } else {
               System.out.print("*");
           }
       }
       for (j = 2; j <= i; j++) {
           if (i > 2 && j % 2 == 0) {
               System.out.printf(" ");
           } else {
               System.out.printf("*");
           }
       }
       System.out.println("");
      

      }
      }
      }

OUTPUT
image

from java.

SusanCB avatar SusanCB commented on July 30, 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 pat7;

/**
*

  • @author nissus
    */
    public class Pat7 {

    /**

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

}
pat7

from java.

sanzeevtamang avatar sanzeevtamang commented on July 30, 2024
 for (int i = 1; i <= 4; i++) {
        for (int j = 4; j > 0; j--) {
            if (j <= i) {
                if ((i + j) % 2 == 0) {
                    System.out.print("*");
                } else {
                    System.out.print(" ");
                }
            } else {
                System.out.print(" ");
            }
        }
        for (int j = 2; j <= i; j++) {
            if ((i + j) % 2 == 0) {
                System.out.print("*");
            } else {
                System.out.print(" ");
            }
        }

star space

from java.

luckydivya avatar luckydivya commented on July 30, 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 pattern13;

/**
*

  • @author PC
    */
    public class Pattern13 {

    /**

    • @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.printf("\n");
      

      }
      }

}
output
pattern13

from java.

ragenmah avatar ragenmah commented on July 30, 2024

package pattern7;

/**
*

  • @author ragen
    */
    public class Pattern7 {

    /**

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

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

      }

    }
    }
    fullscreen capture 7312017 53321 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.