Computer >> Máy Tính >  >> Lập trình >> Java

Chương trình Java để in mẫu hình sao vuông

Bài viết này chúng ta cùng tìm hiểu cách in hình ngôi sao vuông. Mẫu được hình thành bằng cách sử dụng nhiều vòng lặp for và câu lệnh in.

Dưới đây là một minh chứng về điều tương tự -

Đầu vào

Giả sử đầu vào của chúng tôi là -

Enter the length of a side : 8

Đầu ra

Đầu ra mong muốn sẽ là -

The square pattern :
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *

Thuật toán

Step 1 - START
Step 2 - Declare three integer values namely i, j and my_input
Step 3 - Read the required values from the user/ define the values
Step 4 - We iterate through two nested 'for' loops to get space between the characters.
Step 5 - After iterating through the innermost loop, we iterate through another 'for' loop. This will help print the required character.
Step 6 - Now, print a newline to get the specific number of characters in the subsequent lines.
Step 7 - Display the result
Step 8 - Stop

Ví dụ 1

Ở đây, đầu vào đang được người dùng nhập dựa trên dấu nhắc 8a. Bạn có thể thử ví dụ này trực tiếp trong công cụ nền tảng mã hóa của chúng tôi Chương trình Java để in mẫu hình sao vuông .

import java.util.Scanner;
public class SquarePattern{
   public static void main(String args[]){
      int i, j, my_input;
      System.out.println("Required packages have been imported");
      Scanner my_scanner = new Scanner(System.in);
      System.out.println("A reader object has been defined ");
      System.out.print("Enter the length of a side : ");
      my_input = my_scanner.nextInt();
      System.out.println("The square pattern : ");
      for(i = 1; i <= my_input; i++){
         for(j = 1; j <= my_input; j++){
            System.out.print("*");
         }
         System.out.print("\n");
      }
   }
}

Đầu ra

Required packages have been imported
A reader object has been defined
Enter the length of a side : 8
The square pattern :
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *

Ví dụ 2

Ở đây, số nguyên đã được xác định trước đó và giá trị của nó được truy cập và hiển thị trên bảng điều khiển.

public class SquarePattern{
   public static void main(String args[]){
      int i, j, my_input;
      my_input = 8;
      System.out.println("The length of a side is defined as " +my_input);
      System.out.println("The square pattern : ");
      for(i = 1; i <= my_input; i++){
         for(j = 1; j <= my_input; j++){
            System.out.print("* ");
         }
         System.out.print("\n");
      }
   }
}

Đầu ra

The length of a side is defined as 8
The square pattern :
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *