Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

3개의 부울 변수 중 2개가 true인지 확인하는 Java 프로그램

<시간/>

이 기사에서는 3개의 부울 변수 중 2개가 참인지 확인하는 방법을 이해합니다. 부울 변수는 true 또는 false 값만 포함할 수 있는 데이터 유형입니다.

아래는 동일한 데모입니다 -

입력

입력이 -

라고 가정합니다.
Input : true, true, false

출력

원하는 출력은 -

Result : Two of the three variables are true

알고리즘

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

예시 1

여기에서 입력은 프롬프트에 따라 사용자가 입력하고 있습니다. 우리코딩 그라운드 도구에서 이 예제를 라이브로 사용해 볼 수 있습니다. 3개의 부울 변수 중 2개가 true인지 확인하는 Java 프로그램 .

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");
      }
   }
}

출력

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

예시 2

여기서 정수는 이전에 정의되었으며 그 값은 콘솔에 액세스되어 표시됩니다.

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");
      }
   }
}

출력

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