Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 비교연산자
- for문
- array
- 다차원배열
- dowhile문
- 삼항 연산자
- print()
- 기본형호출
- 대입 연산자
- 논리 쉬프트 연산자
- println()
- 순환문
- 비트논리연산자
- 증감연산자
- 비정방행렬
- 자바
- while문
- 다중if
- Java
- 명명규칙
- 안드로이드스튜디오
- 문자열
- 배열
- 타입변환
- 변수유효범위
- 참조형호출
- 사용자입력Switch문
- 산술 쉬프트 연산자
- 콘솔출력문
- 단순if
Archives
- Today
- Total
목록논리 연산자 (1)
신입개발자
연산자4
public class 연산자4 { public static void main(String[] args) { // 논리 연산자 : true/false 반환 boolean t = true, f = false; System.out.println(t && f); //false , and -> && System.out.println(t || f); //true , or -> || System.out.println(!t); // false, not -> ! System.out.println(t ^ f); // true, 비트 논리 연산자와 동일 XOR -> ^ System.out.println(); // 비트 논리 연산자와 비교 : 값을 반환 System.out.println(7 & 3); //3 System.o..
프로그래밍 언어/자바
2022. 5. 1. 10:42