22.03.17 조건문_if문 (1)
if (조건식) {}
: 조건식의 결과는 항상 true 아니면 false여야 한다.
- 조건식이 true이면 {} 안의 문장들을 수행하라
- 조건식이 false이면 {} 안의 문장은 건너뛰어진다.
public static void main(String[] args) {
int x = 0;
System.out.printf("x=%d 일 때, 참인 것은 %n", x);
// {} 안에 문장이 하나뿐이면 {}를 생략할 수 있다.
if(x==0) System.out.println("x==0");
if(x!=0) System.out.println("x!=0");
if(!(x==0)) System.out.println("!(x==0)");
if(!(x!=0)) System.out.println("!(x!=0)");
x = 1;
System.out.printf("x=%d일 때, 참인 것은 %n", x);
if(x==0) System.out.println("x==0");
if(x!=0) System.out.println("x!=0");
if(!(x==0)) System.out.println("!(x==0)");
if(!(x!=0)) System.out.println("!(x!=0)");
}
결과값
x=0 일 때, 참인 것은
x==0
!(x!=0)
x=1일 때, 참인 것은
x!=0
!(x==0)
Author And Source
이 문제에 관하여(22.03.17 조건문_if문 (1)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@saparian/22.03.17-조건문if문-1저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)