Trong bài này, chúng ta sẽ hiểu cách tìm chu vi hình tròn. Chu vi là chu vi của một hình tròn. Đó là khoảng cách xung quanh một vòng tròn.
Chu vi được cho bởi công thức C =2𝜋 \ pi r trong đó, \ pi𝜋 =3,14 và r là bán kính của hình tròn -
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à -
Radius of the circle : 5
Đầu ra
Đầu ra mong muốn sẽ là -
Perimeter of Circle is: 31.428571428571427
Thuật toán
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
Ví dụ 1
Ở đây, đầu vào đang được người dùng nhập dựa trên lời nhắc. Bạn có thể thử trực tiếp ví dụ này trong công cụ nền tảng mã hóa của chúng tôi .
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); } }
Đầu ra
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
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 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); } }
Đầu ra
The radius of the circle is defined as 5.0 The perimeter of Circle is: 31.428571428571427