এই নিবন্ধে, আমরা জানব কিভাবে জাভাতে তিনটি পূর্ণসংখ্যার মধ্যে সবচেয়ে বড় খুঁজে বের করা যায়। এটি একটি বৃহত্তর অপারেটর (<) ব্যবহার করে করা হয়। এখানে আমরা মান তুলনা করার জন্য একটি সাধারণ if-else শর্ত ব্যবহার করি।
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ইনপুট
ধরুন আমাদের ইনপুট হল −
-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