এই প্রবন্ধে, আমরা বুঝব কিভাবে বর্গাকার তারকা প্যাটার্ন প্রিন্ট করতে হয়। প্যাটার্নটি একাধিক ফর-লুপ এবং প্রিন্ট স্টেটমেন্ট ব্যবহার করে গঠিত হয়।
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ইনপুট
ধরুন আমাদের ইনপুট হল −
Enter the length of a side : 8
আউটপুট
কাঙ্খিত আউটপুট হবে −
The square pattern : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
অ্যালগরিদম
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
উদাহরণ 1
এখানে, 8a প্রম্পটের উপর ভিত্তি করে ব্যবহারকারী দ্বারা ইনপুট প্রবেশ করানো হচ্ছে। আপনি আমাদের কোডিং গ্রাউন্ড টুলে এই উদাহরণ লাইভ চেষ্টা করতে পারেন ।
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"); } } }
আউটপুট
Required packages have been imported A reader object has been defined Enter the length of a side : 8 The square pattern : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
উদাহরণ 2
এখানে, পূর্ণসংখ্যা পূর্বে সংজ্ঞায়িত করা হয়েছে, এবং এর মান অ্যাক্সেস করা হয়েছে এবং কনসোলে প্রদর্শিত হয়েছে।
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"); } } }
আউটপুট
The length of a side is defined as 8 The square pattern : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *