इस लेख में, हम समझेंगे कि दो फ्लोटिंग-पॉइंट नंबरों को कैसे गुणा किया जाए। फ़्लोटिंग पॉइंट नंबर दशमलव मानों वाली संख्याएँ हैं। फ्लोट डेटा प्रकार एक एकल-सटीक 32-बिट आईईईई 754 फ़्लोटिंग पॉइंट है। इसका उपयोग मुख्य रूप से फ्लोटिंग-पॉइंट नंबरों के बड़े सरणियों में मेमोरी को बचाने के लिए किया जाता है। डिफ़ॉल्ट मान 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