본문 바로가기

프로그래밍/자바

[자바] 정올 524 : 연산자 - 자가진단7

728x90
반응형
SMALL
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt(), b= sc.nextInt();
        boolean c = (a !=0 ), d = (b != 0 );

        System.out.print( (c && d) + " " + (c || d));

    }
}
728x90
반응형
LIST