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문
- 비교연산자
- 자바
- 대입 연산자
- 참조형호출
- 산술 쉬프트 연산자
- Java
- println()
- 비트논리연산자
- 증감연산자
- 다차원배열
- array
- 삼항 연산자
- 콘솔출력문
- 명명규칙
- 타입변환
- dowhile문
- 논리 쉬프트 연산자
- 기본형호출
- 안드로이드스튜디오
- 배열
- while문
- 문자열
- 다중if
- print()
- 변수유효범위
- 비정방행렬
- 순환문
- 단순if
- 사용자입력Switch문
Archives
- Today
- Total
신입개발자
연산자5 본문
public class 연산자5 {
public static void main(String[] args) {
// 대입 연산자
int i =5, j =2;
System.out.println(i += j); //7 = 5 + 2
System.out.println(i -= j); //5 = 7 - 2
System.out.println(i *= j); //10 = 5 * 2
System.out.println(i /= j); //5 = 10 * 2, 몫
System.out.println(i %= j); //1 = 5 % 2, 나머지
System.out.println(i &= j); //0 = 1 & 2
System.out.println(i |= j); //2 = 0 | 2
System.out.println(i <<= j); // 8 = 2 << 2 , 2를 4배
System.out.println(i >>= j); // 2 = 8 >> 2 , 8를 1/4배
System.out.println(i >>>= j); // 0 = 2 >>> 2 , floor(2를 1/4배)
System.out.println();
//삼항 연산자 : if ~ else의 축약형
i = 10; j = 20;
int max = (i > j) ? i : j; // i가 j보다 크면 i반환 아니면 j 반환
System.out.println(max); //20
int min = (i < j) ? i : j;
System.out.println(min); //10
boolean even = (i % 2 == 0) ? true : false;
System.out.println(even); // 짝수면 true
}
}
Comments