2つの浮動小数点数を乗算するJavaプログラム
この記事では、2つの浮動小数点数を乗算する方法を理解します。浮動小数点数は、10進値の数値です。浮動小数点データ型は、単精度32ビットIEEE754浮動小数点です。これは主に、浮動小数点数の大きな配列でメモリを節約するために使用されます。デフォルト値は0.0fです。浮動小数点データ型は、通貨などの正確な値には使用されません。
以下は同じのデモンストレーションです-
入力
入力が-
であると仮定しますValue_1: 12.4f Value_2: 15.7f
出力
必要な出力は-
になりますResult : 194.68f
アルゴリズム
Step 1- Start Step 2- Declare three floating points: input_1, input_2 and product Step 3- Prompt the user to enter two floating point value/ define the floating-point values Step 4- Read the values Step 5- Multiply the two values using a multiplication operator (*) Step 6- Display the result Step 7- Stop
例1
ここでは、プロンプトに基づいてユーザーが入力を入力しています。この例は、コーディンググラウンドツールでライブで試すことができます 。
import java.util.Scanner; public class MultiplyFloatValues{ public static void main(String[] args){ float input_1, input_2, my_prod; Scanner my_scan = new Scanner(System.in); System.out.println("A reader object has been defined "); System.out.println("Enter the first floating point number: "); input_1 = my_scan.nextFloat(); System.out.println("Enter the second floating point number: "); input_2 = my_scan.nextFloat(); my_prod = input_1 * input_2; System.out.println("\nThe product of the two values is: " + my_prod); } }
出力
A reader object has been defined Enter the first floating point number: 12.4 Enter the second floating point number: 15.7 The product of the two values is: 194.68
例2
ここでは、整数は以前に定義されており、その値にアクセスしてコンソールに表示されます
public class MultiplyFloatValues{ public static void main(String[] args){ float value_1, value_2, my_prod; value_1 = 12.4f; value_2 = 15.7f; System.out.printf("The two numbers are %.2f and %.2f ",value_1, value_2 ); my_prod = value_1 * value_2; System.out.println("\nThe product of the two values are: " + my_prod); } }
出力
The two numbers are 12.40 and 15.70 The product of the two values are: 194.68
-
2組の数の値の数の因数を見つけるプログラム
nums1とnums2という2つの配列があるとします。次の条件を満たす値の数を見つける必要があります- nums1の要素は、選択されている要素の要素です 選択される要素は、nums2のすべての要素の係数です したがって、入力がnums1 =[3,9] nums2 =[27、81]の場合、数値が9と27であるため、出力は2になります。 9 mod 3 =0 9 mod 9 =0 27 mod 9 =0 81 mod 9 =0 27 mod 3 =0 27 mod 9 =0 27 mod 27 =0 81 mod 27
-
2つの行列を乗算するPythonプログラム
この記事では、以下に示す問題ステートメントの解決策について学習します。 問題の説明 − 2つの行列が与えられたので、それらを乗算して結果を出力する必要があります。 2つの行列を乗算するには、最初の行列の列が2番目の行列の行の列と同じである必要があります この条件が真であると評価されるたびに、計算が実行されます それでは、以下の実装の概念を見てみましょう- アプローチ1-ブルートフォース方式 例 A = [[1, 2, 3], [4, 5, 6], [7, 8, 9] ] B = [[5, 3, 3], [6,