इस लेख में, हम समझेंगे कि किसी संख्या की शक्ति की गणना कैसे की जाती है। किसी संख्या की घात की गणना एक लूप का उपयोग करके की जाती है और इसे अपने आप से कई बार गुणा किया जाता है।
नीचे उसी का एक प्रदर्शन है -
इनपुट
मान लीजिए हमारा इनपुट है -
Number : 4 Exponent value : 5
आउटपुट
वांछित आउटपुट निम्नलिखित होगा अर्थात 4 5
The result is 1024
एल्गोरिदम
Step 1 - START Step 2 – Declare two integer values namely my_input and my_exponent Step 3 - Read the required values from the user/ define the values Step 4 – Using a while loop, multiply the input value with itself for n number of times where n is the exponent value. Store the result. Step 5- Display the result Step 6- Stop
उदाहरण 1
यहां, उपयोगकर्ता द्वारा एक प्रॉम्प्ट के आधार पर इनपुट दर्ज किया जा रहा है। आप इस उदाहरण को हमारे कोडिंग ग्राउंड टूल में लाइव आज़मा सकते हैं ।
import java.util.Scanner; public class Exponents { public static void main(String[] args) { int my_input , my_exponent; 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 number : "); my_input = my_scanner.nextInt(); System.out.print("Enter the exponent value : "); my_exponent = my_scanner.nextInt(); long my_result; my_result = 1; while (my_exponent != 0) { my_result *= my_input; --my_exponent; } System.out.println("The result is = " + my_result); } }
आउटपुट
Required packages have been imported A reader object has been defined Enter the number : 4 Enter the exponent value : 5 The result is = 1024है
उदाहरण 2
यहां, पूर्णांक को पहले परिभाषित किया गया है, और इसके मान को एक्सेस किया जाता है और कंसोल पर प्रदर्शित किया जाता है।
public class Exponents { public static void main(String[] args) { int my_input , my_exponent; my_input = 4; my_exponent = 5; System.out.println("The number is defined as " +my_input +" and the exponent is defined as " + my_exponent); long my_result; my_result = 1; while (my_exponent != 0) { my_result *= my_input; --my_exponent; } System.out.println("The result is = " + my_result); } }
आउटपुट
The number is defined as 4 and the exponent is defined as 5 The result is = 1024