इस लेख में, हम समझेंगे कि जावा में तीन पूर्णांकों में से सबसे बड़ा कैसे खोजा जाए। यह ऑपरेटर (<) से अधिक का उपयोग करके किया जाता है। यहां हम मूल्यों की तुलना करने के लिए एक साधारण अगर-शर्त का उपयोग करते हैं।
नीचे उसी का एक प्रदर्शन है -
इनपुट
मान लीजिए हमारा इनपुट है -
-50, 30 and 50
आउटपुट
वांछित आउटपुट होगा -
The largest number is 50
एल्गोरिदम
Step1- Start Step 2- Declare three integers: input_1, input_2 and input_3 Step 3- Prompt the user to enter the three-integer value/ define the integers Step 4- Read the values Step 5- Using an if else loop, compare the first input with the other two inputs to check if it is the largest of the three integers. If not, repeat the step for the other two integers. Step 6- Display the result Step 7- Stop
उदाहरण 1
यहां, उपयोगकर्ता द्वारा एक संकेत के आधार पर इनपुट दर्ज किया जा रहा है। आप इस उदाहरण को हमारे कोडिंग ग्राउंड टूल में लाइव देख सकते हैं ।
import java.util.Scanner; public class Largest { public static void main(String[] args) { int my_input_1, my_input_2, my_input_3; System.out.println("Required packages have been imported"); Scanner my_scanner = new Scanner(System.in); System.out.println("A scanner object has been defined "); System.out.print("Enter the first number : "); my_input_2 = my_scanner.nextInt(); System.out.print("Enter the second number : "); my_input_2 = my_scanner.nextInt(); System.out.print("Enter the third number : "); my_input_3 = my_scanner.nextInt(); my_input_1 = -50; my_input_2 = 30; my_input_3 = 50; if( my_input_1 >= my_input_2 && my_input_1 >= my_input_3) System.out.println("The largest number is " +my_input_1); else if (my_input_2 >= my_input_1 && my_input_2 >= my_input_3) System.out.println("The largest number is " +my_input_2); else System.out.println("The largest number is " +my_input_3); } }
आउटपुट
Required packages have been imported A reader object has been defined Enter the first number : -50 Enter the second number : 30 Enter the third number : 50 The largest number is 50
उदाहरण 2
यहां, पूर्णांक को पहले परिभाषित किया गया है, और इसके मान को एक्सेस किया जाता है और कंसोल पर प्रदर्शित किया जाता है।
public class Largest { public static void main(String[] args) { int my_input_1, my_input_2, my_input_3; my_input_1 = -50; my_input_2 = 30; my_input_3 = 50; System.out.println("The three numbers are defined as " +my_input_1 +", " +my_input_2 +" and " +my_input_3); if( my_input_1 >= my_input_2 && my_input_1 >= my_input_3) System.out.println("The largest number is " +my_input_1); else if (my_input_2 >= my_input_1 && my_input_2 >= my_input_3) System.out.println("The largest number is " +my_input_2); else System.out.println("The largest number is " +my_input_3); } }
आउटपुट
The three numbers are defined as -50, 30 and 50 The largest number is 50