ในบทความนี้ เราจะเข้าใจวิธีการหาเส้นรอบวงของวงกลม เส้นรอบวงคือปริมณฑลของวงกลม มันคือระยะทางรอบวงกลม
เส้นรอบวงถูกกำหนดโดยสูตร 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