এই নিবন্ধে, আমরা একটি বৃত্তের পরিধি খুঁজে কিভাবে বুঝতে হবে. পরিধি হল একটি বৃত্তের পরিধি। এটি একটি বৃত্তের চারপাশে দূরত্ব।
C =2𝜋\pi r সূত্র দ্বারা পরিধি দেওয়া হয় যেখানে, \pi𝜋 =3.14 এবং r হল বৃত্তের ব্যাসার্ধ −
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ইনপুট
ধরুন আমাদের ইনপুট হল −
Radius of the circle : 5
আউটপুট
কাঙ্খিত আউটপুট হবে −
Perimeter of Circle is: 31.428571428571427
অ্যালগরিদম
Step 1 - START Step 2 - Declare 2 double values namely my_radius and my_perimeter Step 3 - Read the required values from the user/ define the values Step 4 – Calculate the perimeter using the formula using the formula (2*22*7)/7 and store the result. Step 5- Display the result Step 6- Stop
উদাহরণ 1
এখানে, একটি প্রম্পটের উপর ভিত্তি করে ব্যবহারকারী দ্বারা ইনপুট প্রবেশ করানো হচ্ছে। আপনি আমাদের কোডিং গ্রাউন্ড টুলে এই উদাহরণ লাইভ চেষ্টা করতে পারেন ।
import java.util.Scanner; public class PerimeterOfCircle{ public static void main(String args[]){ double my_radius, my_perimeter; 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 radius of the circle : "); my_radius = my_scanner.nextDouble(); my_perimeter =(22*2*my_radius)/7 ; System.out.println("The perimeter of Circle is: " +my_perimeter); } }
আউটপুট
Required packages have been imported A reader object has been defined Enter the radius of the circle : 5 The perimeter of Circle is: 31.428571428571427
উদাহরণ 2
এখানে, পূর্ণসংখ্যা পূর্বে সংজ্ঞায়িত করা হয়েছে, এবং এর মান অ্যাক্সেস করা হয়েছে এবং কনসোলে প্রদর্শিত হয়েছে।
public class PerimeterOfCircle{ public static void main(String args[]){ double my_radius, my_perimeter; my_radius = 5; System.out.println("The radius of the circle is defined as " +my_radius); my_perimeter =(22*2*my_radius)/7 ; System.out.println("The perimeter of Circle is: " +my_perimeter); } }
আউটপুট
The radius of the circle is defined as 5.0 The perimeter of Circle is: 31.428571428571427