Giter VIP home page Giter VIP logo

Comments (27)

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

/**
*

  • @author Kishorr
    */
    public class JavaApplication16 {

    /**

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

}
capture7

from java.

milan604 avatar milan604 commented on July 30, 2024

package pattern8;

/**
*

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

    /**

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

}
screenshot from 2017-07-27 14-41-06

from java.

jagdish4249 avatar jagdish4249 commented on July 30, 2024

package pattern4;

/**
*

  • @author jagdish
    */
    public class Pattern4 {

    /**

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

       System.out.println();
      

      }
      }

}

image

from java.

pujanchangubhari73 avatar pujanchangubhari73 commented on July 30, 2024

package forpattern11;

/**
*

  • @author Balkrsihna
    */
    public class ForPattern11 {

    /**

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

       for (int j = 1; j <= i - 1; j++) {
      
           System.out.printf("%d" + " ", a);
           a++;
      
       }
      
       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
      int a = 1;
      for (int i = 4; i > 0; i--) {
      for (int j = 4; j >= i; j--) {
      System.out.print(a + " ");
      a++;
      }
      System.out.println(" ");
      }
      System.out.println();
      }

}
screen shot 2017-07-27 at 5 11 36 pm

from java.

sthaanu avatar sthaanu 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 pattern6;

/**
*

  • @author admin
    */
    public class Pattern6 {

    /**

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

           System.out.print(k);
           k++;
           System.out.print("\t");
      
       }
      
       System.out.println(" ");
      

      }

    }

}
capture

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

/**
*

  • @author Anish
    */
    public class Pattern6 {

    /**

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

}
p6

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) {
// pattern6
System.out.println("\nPattern6");
int x = 1;
for (int i = 1; i <= 5; i++) {
for (int j = 1; j < i; j++) {
System.out.print(x++ + " ");
}
System.out.println(" ");
}
}
}
6

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

/**
*

  • @author dell
    */
    public class PatterSix {

    public static void main(String[] args) {
    int y = 1;
    for (int i = 0; i < 5; i++) {
    for (int j = 0; j < i; j++) {
    System.out.printf("%d", y);
    y++;

         }
         System.out.println();
     }
    

    }

}
output
8

from java.

bsnarnzt1 avatar bsnarnzt1 commented on July 30, 2024

package patt6;

/**
*

  • @author User
    */
    public class Patt6 {

    /**

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

from java.

kajalmaharjan avatar kajalmaharjan commented on July 30, 2024

//PATTERN 8
int a = 1;
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 5; j++) {
if (i >= j) {
System.out.printf("%d ", a);
a++;
}
}
System.out.printf("\n");
}
image

from java.

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

/**
*

  • @author KIRANN
    */
    public class Pattern4 {

    /**

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

Output:
capture

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

/**
*

  • @author DELL
    */
    public class Q8 {

    /**

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

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

      }

    }

}

OUTPUT
8

from java.

rabina12 avatar rabina12 commented on July 30, 2024

package p8;

/**
*

  • @author Albina Praz
    */
    public class P8 {

    /**

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

from java.

rivab avatar rivab commented on July 30, 2024

package starstar6;

/**
*

  • @author DELL
    */
    public class StarStar6 {

    /**

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

    }

}
starstar6

from java.

rituratnam avatar rituratnam commented on July 30, 2024

CODE:
package pattern8;

/**
*

  • @author Lavalesh
    */
    public class Pattern8 {

    /**

    • @param args the command line arguments
      */
      public static void main(String[] args) {
      int a=1;
      for (int i = 1; i <=5; i++) {
      for (int j = 1; j < i; j++) {
      System.out.printf("%d ",a);
      a++;
      }
      System.out.println("");
      }
      }
      }
      Output:
      pattern8

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

/**
*

  • @author NiiRosh
    */
    public class Pattern8 {

    /**

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

       }
       System.out.println("");
      

      }
      }

}
Output:
pattern8

from java.

duwalshraddha avatar duwalshraddha commented on July 30, 2024

Code
package pattern8;

/**
*

  • @author Lenovo
    */
    public class Pattern8 {

    /**

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

}
8

from java.

Roshanshrestha7 avatar Roshanshrestha7 commented on July 30, 2024

public class Ass81 {

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

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

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

from java.

ajay987 avatar ajay987 commented on July 30, 2024

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

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

            System.out.print(a);
            a = a + 1;
        }
        System.out.println();
    }

patt8sol

from java.

Rajjushrestha avatar Rajjushrestha commented on July 30, 2024

public static void main(String[] args) {
int x = 1;
for (int i = 1; i < 5; i++) {
for (int j = 1; j < i + 1; j++) {
System.out.print(x + "\t");
x++;
}
System.out.println("");
}
}
8

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

/**
*

  • @author sarumdr
    */
    public class Pattern6 {

    /**

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

      // TODO code application logic here
      int num = 1;

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

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

}

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

/**
*

  • @author nissus
    */
    public class Pat8 {

    /**

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

}
pat8

from java.

sanzeevtamang avatar sanzeevtamang 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 pattern6;

/**
*

  • @author Eev
    */
    public class PatterN6 {

    /**

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

      {
      for(int j=1;j<=i; j++)
      {
      System.out.printf("%d",x);
      x++;
      }
      System.out.println();

    }
    }
    }
    image

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

/**
*

  • @author PC
    */
    public class Pattern6 {

    /**

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

      for (int i = 0; i <= 3; i++) {
      for (int j = 0; j <= i; j++) {
      System.out.printf(num + " ");
      num++;
      }
      System.out.println("");
      output
      pattern6

from java.

ragenmah avatar ragenmah commented on July 30, 2024

package pattern8;

/**
*

  • @author ragen
    */
    public class Pattern8 {

    /**

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

           b++;
       }
           System.out.print("\n");
      

      }
      }

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