এই নিবন্ধে, আমরা কীভাবে একটি আয়তক্ষেত্রের পরিধি খুঁজে বের করতে হয় তা বুঝব। আয়তক্ষেত্রের সমস্ত বাহুর দৈর্ঘ্য যোগ করে আয়তক্ষেত্রের পরিধি গণনা করা হয়।
নীচে একটি আয়তক্ষেত্রের একটি প্রদর্শনী আছে। একটি আয়তক্ষেত্রের পরিধি হল আয়তক্ষেত্রের দুটি দৈর্ঘ্য এবং দুটি প্রস্থের মোট দৈর্ঘ্য -
ইনপুট
ধরুন আমাদের ইনপুট হল −
The length of the sides of a rectangle are : 5, 8, 5, 8
আউটপুট
কাঙ্খিত আউটপুট হবে −
Perimeter : 26
অ্যালগরিদম
Step 1 – START Step 2 – Declare 5 floating point variables a, b, c, d and perimeter Step 3 – Read values of a and b from user as the opposite sides of the rectangle are equal, only two sides input will be sufficient. Step 4- Calculate the perimeter by adding up all the sides Step 5- Display the Perimeter value Step 6 – STOP
উদাহরণ 1
এখানে, একটি প্রম্পটের উপর ভিত্তি করে ব্যবহারকারী দ্বারা ইনপুট প্রবেশ করানো হচ্ছে। আপনি আমাদের কোডিং গ্রাউন্ড টুলে এই উদাহরণ লাইভ চেষ্টা করতে পারেন ।
import java.util.Scanner; public class RectanglePerimeter{ public static void main (String args[]){ float a ,b, c, d, perimeter; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A Scanner object has been defined "); System.out.print("Enter the length of first side : "); a = my_scanner.nextFloat(); System.out.print("Enter the length of second side : "); b = my_scanner.nextFloat(); c = a; d = b; System.out.printf("The length of the sides of the Rectangle are %.2f %.2f %.2f %.2f", a, b, c, d); perimeter = a + b + c + d; System.out.printf("\nThe perimeter of Rectangle is: %.2f",perimeter); } }
আউটপুট
Required packages have been imported A Scanner object has been defined Enter the length of first side : 5 Enter the length of second side : 8 The length of the sides of the Rectangle are 5.00 8.00 5.00 8.00 The perimeter of Rectangle is: 26.00
উদাহরণ 2
এখানে, পূর্ণসংখ্যা পূর্বে সংজ্ঞায়িত করা হয়েছে, এবং এর মান অ্যাক্সেস করা হয়েছে এবং কনসোলে প্রদর্শিত হয়েছে।
public class RectanglePerimeter{ public static void main (String args[]){ float a ,b, c, d, perimeter; a=c= 8; b=d= 5; System.out.printf("The length of the sides of the Rectangle are %.2f %.2f %.2f %.2f", a, b, c, d); perimeter = a + b + c + d; System.out.printf("\nThe perimeter of Rectangle is: %.2f",perimeter); } }
আউটপুট
The length of the sides of the Rectangle are 8.00 5.00 8.00 5.00 The perimeter of Rectangle is: 26.00