Computer >> Máy Tính >  >> Lập trình >> Java

Chương trình Java để kiểm tra xem hai trong ba biến Boolean có đúng không

Trong bài này, chúng ta sẽ hiểu cách kiểm tra xem hai trong ba biến Boolean có đúng hay không. Biến Boolean là kiểu dữ liệu chỉ có thể chứa các giá trị đúng hoặc sai.

Dưới đây là một minh chứng về điều tương tự -

Đầu vào

Giả sử đầu vào của chúng tôi là -

Input : true, true, false

Đầu ra

Đầu ra mong muốn sẽ là -

Result : Two of the three variables are true

Thuật toán

Step 1 - START
Step 2 - Declare 4 boolean values namely my_input_1, my_input_2, my_input_3 and
my_result
Step 3 - Read the required values from the user/ define the values
Step 4 - Using an if-else condition, compare two of the three values each time using an AND
operator.
Step 5 - Display the result
Step 6 – Stop

Ví dụ 1

Ở đây, đầu vào đang được người dùng nhập dựa trên lời nhắc. Bạn có thể thử trực tiếp ví dụ này trong công cụ nền tảng mã hóa của chúng tôi Chương trình Java để kiểm tra xem hai trong ba biến Boolean có đúng không .

import java.util.Scanner;
public class BooleanValues {
   public static void main(String[] args) {
      boolean my_input_1, my_input_2, my_input_3, my_result;
      System.out.println("The required packages have been imported");
      System.out.println("A scanner object has been defined ");
      Scanner my_scanner = new Scanner(System.in);
      System.out.print("Enter the first boolean value: ");
      my_input_1 = my_scanner.nextBoolean();
      System.out.print("Enter the second boolean value: ");
      my_input_2 = my_scanner.nextBoolean();
      System.out.print("Enter the third boolean value: ");
      my_input_3 = my_scanner.nextBoolean();
      if(my_input_1) {
          my_result = my_input_2 || my_input_3;
      } else {
         my_result = my_input_2 && my_input_3;
      }
      if(my_result) {
         System.out.println("Two of the three variables are true");
      } else {
         System.out.println("Two of the three variables are false");
      }
   }
}

Đầu ra

The required packages have been imported
A scanner object has been defined
Enter the first boolean value: true
Enter the second boolean value: true
Enter the third boolean value: false
Two of the three variables are true

Ví dụ 2

Ở đây, số nguyên đã được xác định trước đó và giá trị của nó được truy cập và hiển thị trên bảng điều khiển.

public class BooleanValues {
   public static void main(String[] args) {
      boolean my_input_1, my_input_2, my_input_3, my_result;
      my_input_1 = true;
      my_input_2 = true;
      my_input_3 = false;
      System.out.println("The three boolean values are defined as " +my_input_1 +" , " +my_input_2 + " and " +my_input_3);
      if(my_input_1) {
         my_result = my_input_2 || my_input_3;
      } else {
         my_result = my_input_2 && my_input_3;
      }
      if(my_result) {
         System.out.println("Two of the three variables are true");
      } else {
         System.out.println("Two of the three variables are false");
      }
   }
}

Đầu ra

The three boolean values are defined as true , true and false
Two of the three variables are true