search
HomeJavajavaTutorialPatterns in Java
Patterns in JavaAug 30, 2024 pm 04:24 PM
java

In the article Patterns in Java, before learning any programming language in Java and diving deep into the advanced concepts, it is important to understand the working of loops. Though there are 3 types of loops which are for, while and do-while loop. Each loop is used according to the particular situation of a program as they are slightly different from each other. In order to use various loops requires some programming logic, and for this purpose, patterns practice is given to the programmers as it involves the use of logical and reasoning power. For example, it can be printing geometric figures (like triangles, squares, etc.), pyramids, boxes in various patterns of stars, numbers, and character styles on the console screen. The format or basic syntax of the loops may differ from one programming language to another, but the general logic to print these patterns remains the same.

ADVERTISEMENT Popular Course in this category JAVA MASTERY - Specialization | 78 Course Series | 15 Mock Tests

Example of Patterns in Java

Let’s understand how to draw patterns in Java through some examples

Example1: Printing half the pyramid using numbers.

Code:

public class Pyramid
{
public static void main(String[] args)
{
int i, j;
​//outermost loop to represent the number of rows which is 5 in this case for(i= 1; i
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500625821960.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p>In the above example, only 2 basic loops are required to print the pattern; the first ​for loop is for the number of rows. In our case, we have defined the rows, i.e. 5, otherwise we can also take the input from the user and store it in a variable. The inner loop is to print the numbers in a particular row; After the completion of 1 row or the end of the ‘j’ loop, the line is changed using println().</p>
<h4 id="Example-Printing-arrow-of-numbers">Example2: Printing arrow of numbers.</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class NumberTriangle
{
public static void main(String[] args)
{
int i, j;
int rows =7;
​//outermost loop to represent the number of rows which is 7 in this case
//for the upper half of arrow
for (i=1; i=1; i--)
{
​//innermost loop is to print the numbers in the specific rows
//for the lower half of arrow
for (j=1; j
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500626089284.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p> </p>
<p>In the above example, we need to divide the arrow into two halves and use 2 loops for each half. The first half of the rows would be the initial value set for rows, whereas the row count is 1 less than the initial value for the lower half. Inner loops for both halves are used to iterate through each row according to the outer loop.</p>
<h4 id="Example-Printing-full-pyramid-using-stars">Example3: Printing full pyramid using stars(*).</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class FullPyramid
{
public static void main(String[] args)
{
int i, j, k;
int rows = 5;
//outermost loop to represent the number of rows which is 5 in this case for(i= 1; i
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500626263747.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p>In the above example, we need to do 3 things, i.e. keeping in mind the total number of rows for the printing of the pyramid for which the first ​for ​loop is working from 1 to rows variable. Secondly, we first need to print the spaces in the pyramid and then the pattern (*) after the spaces. For this second and third ​, for ​loops are used inside the outer loop ‘i’.</p>
<h4 id="Example-Printing-half-reverse-pyramid-using-numbers">Example 4: Printing half reverse pyramid using numbers.</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class ReversePyramid
{
public static void main(String[] args)
{
int i, j, k;
int rows = 5;
​//outermost loop to represent the number of rows which is 5 in this case for(i= 1; i
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500626323687.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p>Simple half pyramid is easy as we need to handle the numbers, * or the characters we are printing, but for the reverse pyramid, we need to first print the spaces and then the pattern, which is (*) in our case. So 3 ​for​ loops are used, working similarly to the ones in the case of the full pyramid.</p>
<h4 id="Example-Printing-half-the-pyramid-using-alphabets">Example 5: Printing half the pyramid using alphabets.</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class AlphabetPyramid
{
public static void main(String[] args)
{
int i, j;
​//outermost loop to represent the number of rows which is 5 in this case for(i= 1; i
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500626563367.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p>The pyramid is printed with the same logic as used in the above example, using 2 ​for ​loops, one for the number of rows and others for the character printing in a particular row. But the main thing that should be noted is the handling of character data. For example, ‘A’ has a numeric value of 65 in Java, so all the mathematical logic is performed using the numeric value of the alphabet, and in the end, it is printed in the character format.</p>
<h4 id="Example-Printing-pattern-of-alphabets">Example 6: Printing pattern of alphabets.</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class AlphabetPattern
{
public static void main(String[] args)
{
int i, j;
//outermost loop to represent the number of rows which is 5 in this case for(i= 1; i
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500626797696.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p>The basic pattern followed to deal with the character value and the 2 ​for ​loops in the above example is similar to Example 5 only difference being the simple logic used to print the desired pattern.</p>
<h4 id="Example-Printing-square-using-stars">Example 7: Printing square using stars (*).</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class SquarePattern
{
public static void main(String[] args)
{
int i, j;
​//outermost loop to represent the number of rows which is 5 in this case for(i= 1; i
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500627317712.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p>For printing of square, we need length and width, i.e. both sides of the square should be the same, which is 5 in our case. So the first ​ ​loop is used for the length or number of rows in the square, and the inner ​ ​loop is used for the width of the square, i.e. 5 stars in a single row.</p>
<h4 id="Example-Printing-rectangle-using-stars">Example 8: Printing rectangle using stars (*).</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class RectanglePattern
{
public static void main(String[] args)
{
int i, j;
​//outermost loop to represent the number of rows which is 5 in this case for(i= 1; i
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500627438442.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p>The basic logic of printing the rectangle of (*) is the same as printing of squares, the only difference between is the different length and width of the rectangle. Here ‘i’ loop is for the length of the rectangle, and the inner ‘j’ loop is for the width of the loop. Our program is taken as a constant value; we can also ask the user and store them in separate variables.</p>
<h4 id="Example-Printing-a-Diamond-using-stars">Example 9: Printing a Diamond using stars.</h4>
<p>Printing a diamond in Java is a very simple process. It involves printing 2 pyramids, 1 in the upward direction and another in an inverted direction. Basically, we need to use the loops to do the coding to print two separate pyramids.</p>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class Diamond
{
public static void main(String[] args)
{
int i, j, k;
int rows = 5;
​//outermost loop to represent the number of rows which is 5 in this case.
// Creating upper pyramid
for(i= 1; i0; i--)
{
​//innermost loop for the space present in the inverted pyramid for (j=1; j
<p>In the above example, almost the same logic is applied to create both pyramids, one in an upward direction and another in an inverted direction. Thus, the first ​loop is for the number of lines or rows in the pattern, and the second is for spaces and the stars (*) pattern in the pattern.</p>
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500627714497.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<h4 id="Example-Printing-binary-numbers-in-a-stair-format">Example 10: Printing binary numbers in a stair format.</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class BinaryStair
{
public static void main(String[] args)
{
int i, j;
//outer loop for the total rows which is 5 in this case for (i = 1; i 
<p><strong>Output:</strong></p>
<p><img  src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/000/172500627989535.png?x-oss-process=image/resize,p_40" class="lazy" alt="Patterns in Java" ></p>
<p>In the above example, in order to print binary pattern, outer ​for ​loop ‘i’ is used for a total number of rows, and the inner ​for ​loop ‘j’ is used to iterate till the outer loop ‘i’ because for the 1st row, we need 1 value, for the 2nd row we need 2 values, and so on. ​If​ and else ​statements are used in order to print the alternate value of 0 and 1. Suppose for the first time i=1, j=1 and 1%2 != 0, then 1 is printed, and execution will move out of the inner loop.</p>
<h4 id="Example-Program-to-print-repeating-alphabet-patterns">Example 11: Program to print repeating alphabet patterns.</h4>
<p><strong>Code:</strong></p>
<pre class="brush:php;toolbar:false">public class AlphabetReverseOrder
{
public static void main(String[] args)
{
int i, j, k;
//outer loop for the total rows which is 5 in this case for (i = 0 ; i=0; k--)
{
System.out.print((char) (ch+k) + " ");
}
System.out.println();
}
}
}

Output:

Patterns in Java

In the above example, if we observe each row of pattern, we need to print the alphabet first in the increasing order, i.e. A B and then in the reverse order, i.e. A B A. For this, we need 3 loops, 1st ​for​ loop for the total number of rows. 2nd ​for​ loop to print the alphabets in increasing order then the 3rd ​for​ loop which remains inside the outer ‘i’ loop and prints the alphabets in the same line but in reverse order of ‘j’ loop.

Conclusion

The above example and their explanations clearly show how to make such patterns in Java. Though these patterns seem to be difficult in the starting, observing them deeply of how the repetition of pattern is happening in a single row and according to how many loops should be used, it becomes easy to do hands-on on this. Today also, in interviews of big companies, candidates are asked to write the logic of patterns of varying difficulty levels because this pattern making shows the basic logical and programming knowledge of an individual.

The above is the detailed content of Patterns in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
带你搞懂Java结构化数据处理开源库SPL带你搞懂Java结构化数据处理开源库SPLMay 24, 2022 pm 01:34 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

Java集合框架之PriorityQueue优先级队列Java集合框架之PriorityQueue优先级队列Jun 09, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

完全掌握Java锁(图文解析)完全掌握Java锁(图文解析)Jun 14, 2022 am 11:47 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

一起聊聊Java多线程之线程安全问题一起聊聊Java多线程之线程安全问题Apr 21, 2022 pm 06:17 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

详细解析Java的this和super关键字详细解析Java的this和super关键字Apr 30, 2022 am 09:00 AM

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

Java基础归纳之枚举Java基础归纳之枚举May 26, 2022 am 11:50 AM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

java中封装是什么java中封装是什么May 16, 2019 pm 06:08 PM

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

归纳整理JAVA装饰器模式(实例详解)归纳整理JAVA装饰器模式(实例详解)May 05, 2022 pm 06:48 PM

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于设计模式的相关问题,主要将装饰器模式的相关内容,指在不改变现有对象结构的情况下,动态地给该对象增加一些职责的模式,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),