Found 9326 Articles for Object Oriented Programming

Java Program to Print Spiral Pattern of Numbers

AmitDiwan
Updated on 25-Feb-2022 12:42:01

829 Views

In this article, we will understand how to print spiral pattern of numbers. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the size : 5OutputThe desired output would be −The spiral pattern 5 5 5 5 5 5 5 5 5 5 4 4 4 4 4 4 4 5 5 4 3 3 3 3 3 4 5 5 3 2 2 4 2 3 4 5 5 4 3 2 1 2 3 4 5 5 4 3 2 2 2 3 4 5 ... Read More

Print Pyramid Star Pattern in Java Program

AmitDiwan
Updated on 25-Feb-2022 12:38:05

6K+ Views

In this article, we will understand how to print pyramid star pattern. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the number of rows : 8OutputThe desired output would be −The pyramid star pattern : * * * * * * * * * * * * * * * * * * * * * * * ... Read More

Java Program to Print Square Star Pattern

AmitDiwan
Updated on 31-May-2024 17:40:27

9K+ Views

In this article, we will understand how to print square star pattern. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the length of a side : 8OutputThe desired output would be −The square pattern : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ... Read More

Java Program to Print Diamond Star Pattern

AmitDiwan
Updated on 25-Feb-2022 12:23:35

742 Views

In this article, we will understand how to print Diamond Star pattern. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the number of rows : 8OutputThe desired output would be −The diamond star pattern :     *     ***   *****   *******   *********   ***********  ************* ***************  *************   ***********   *********   *******    *****     ***       *AlgorithmStep ... Read More

Java Program to Print Star Pascal's Triangle

AmitDiwan
Updated on 25-Feb-2022 11:58:52

505 Views

In this article, we will understand how to print star Pascal’s triangle. The Pascal’s triangle is formed by using multiple for-loops and print statements. All values outside the triangle are considered zero (0). The first row is 0 1 0 whereas only 1 acquire a space in Pascal’s triangle, 0s are invisible. The second row is acquired by adding (0+1) and (1+0). The output is sandwiched between two zeroes. The process continues till the required level is achieved.Below is a demonstration of the same −InputSuppose our input is −Enter the number of rows in Pascal's Triangle : 8OutputThe desired output ... Read More

Java Program to Print Mirror Lower Star Triangle Pattern

AmitDiwan
Updated on 25-Feb-2022 11:27:09

394 Views

In this article, we will understand how to print mirror lower star triangle pattern. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the number of rows : 8OutputThe desired output would be −The mirror lower star triangle pattern : * * * * * * * *  * * * * * * *   * * * * * *    * * * * *     * * * *      * * *       * *       ... Read More

Java Program to Print Downward Triangle Star Pattern

AmitDiwan
Updated on 25-Feb-2022 11:18:21

560 Views

In this article, we will understand how to print downward triangle star pattern. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the number of rows : 8OutputThe desired output would be −The downward triangle star pattern : * * * * * * * * * * * * * * *  * * * * * *   * * * * *    * * * *     * * *      * *     *AlgorithmStep 1 - START ... Read More

Java Program to Print Mirror Upper Star Triangle Pattern

AmitDiwan
Updated on 25-Feb-2022 11:10:15

360 Views

In this article, we will understand how to print mirror upper star triangle pattern. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the number of rows : 8OutputThe desired output would be −The mirror upper star pattern : ******** ******* ****** ***** **** *** ** *AlgorithmStep 1 - START Step 2 - Declare four integer values namely i, ... Read More

Java Program to Print Upper Star Triangle Pattern

AmitDiwan
Updated on 25-Feb-2022 11:05:15

652 Views

In this article, we will understand how to print upper star triangle pattern. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the number of rows : 8OutputThe desired output would be −The upper star triangle star pattern :               *             * *           * * *         * * * *       * * * * *     * * * * * * ... Read More

Java Program to Print Pyramid Star Pattern

AmitDiwan
Updated on 22-Feb-2022 13:19:45

544 Views

In this article, we will understand how to print pyramid star pattern. The pattern is formed by using multiple for-loops and print statements.Below is a demonstration of the same −InputSuppose our input is −Enter the number of rows : 8OutputThe desired output would be −The pyramid star pattern :        *       * *      * * *     * * * *    * * * * *   * * * * * *  * * * * * * * * * * * * * * *AlgorithmStep 1 - ... Read More

Advertisements