円の周囲を見つけるJavaプログラム
この記事では、円の周囲を見つける方法を理解します。円周は円の周囲長です。円周の距離です。
円周は式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
-
長方形の周囲を見つけるJavaプログラム
この記事では、長方形の周囲を見つける方法を理解します。長方形の周囲長は、長方形のすべての辺の長さを加算して計算されます。 以下は長方形のデモンストレーションです。長方形の周囲は、長方形の2つの長さと2つの幅の全長です- 入力 入力が-であると仮定します The length of the sides of a rectangle are : 5, 8, 5, 8 出力 必要な出力は-になります Perimeter : 26 アルゴリズム Step 1 – START Step 2 – Declare 5 floating point variabl
-
Pythonプログラムで円柱の周囲を見つける
この記事では、以下に示す問題ステートメントの解決策について学習します- 問題の説明 直径と高さを入力し、円柱の周囲長を見つけます。 周囲長は、円柱、つまり長方形の側面図に他なりません。 したがって、周囲長=2 *(h + d) ここで、dは円柱の直径です hは円柱の高さです それでは、実装を見てみましょう 例 # Function to calculate the perimeter of a cylinder def perimeter( diameter, height ) : return 2 * ( diameter + height )