Patterns

Dear Sciaku Learner you are not logged in or not enrolled in this course.

Please Click on login or enroll now button.

If you have any query feel free to chat us!

Happy Coding! Happy Learning!

Lecture 30:- Patterns

In Java, you can create various patterns using loops. Patterns are a great way to practice loop control and create interesting visual designs. Here are a few examples of different patterns you can create using nested loops:

  1. Pattern 1 - Right Triangle:

markdownCopy code

* ** *** **** *****

javaCopy code

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

  1. Pattern 2 - Inverted Right Triangle:

markdownCopy code

***** **** *** ** *

javaCopy code

public class Pattern2 {    public static void main(String[] args) {        for (int i = 5; i >= 1; i--) {            for (int j = 1; j <= i; j++) {                System.out.print("*");            }            System.out.println();        }    } }

  1. Pattern 3 - Pyramid:

markdownCopy code

    *   ***  ***** ******* *********

javaCopy code

public class Pattern3 {    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.print(" ");            }            for (int k = 1; k <= 2 * i - 1; k++) {                System.out.print("*");            }            System.out.println();        }    } }

  1. Pattern 4 - Diamond:

markdownCopy code

    *   ***  ***** ******* ********* *******  *****   ***    *

javaCopy code

public class Pattern4 {    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.print(" ");            }            for (int k = 1; k <= 2 * i - 1; k++) {                System.out.print("*");            }            System.out.println();        }        for (int i = n - 1; i >= 1; i--) {            for (int j = 1; j <= n - i; j++) {                System.out.print(" ");            }            for (int k = 1; k <= 2 * i - 1; k++) {                System.out.print("*");            }            System.out.println();        }    } }

These are just a few examples of the patterns you can create using loops in Java. Patterns can be as simple or as complex as you like, depending on the logic you use in the loops. They are a fun and creative way to practice loop control and problem-solving skills.

6. Loops

Comments: 0

Frequently Asked Questions (FAQs)

How do I register on Sciaku.com?
How can I enroll in a course on Sciaku.com?
Are there free courses available on Sciaku.com?
How do I purchase a paid course on Sciaku.com?
What payment methods are accepted on Sciaku.com?
How will I access the course content after purchasing a course?
How long do I have access to a purchased course on Sciaku.com?
How do I contact the admin for assistance or support?
Can I get a refund for a course I've purchased?
How does the admin grant access to a course after payment?