public class Ex7 {
public static void main(String[] args) {
// TODO Auto-generated method stub
char c1 = 'A' + 1; // 65 + 1 = 66
System.out.println(c1); // B
char c2 = 'A';
System.out.println(c2); // A
int c3 = c2 + 1;
System.out.println(c3); // 66
char c4 = (char)(c2 + 1);
System.out.println(c4); // B
short s1 = 65 + 35;
System.out.println(s1); // 100
short s2 = 10;
short s3 = 20;
short s4 = (short)(s2 + s3); // 30
System.out.println(s4);
int i7 = s2 + s3;
System.out.println(i7); // 30
char ch1 = 65;
char ch2 = 'B' + 1;
System.out.println(ch2); // C
char ch3 = (char)(ch2 + 1);
System.out.println(ch3); // D
int i8 = ch2 + 1;
System.out.println(i8); //68
}
}
public class Ex8 {
public static void main(String[] args) {
// TODO Auto-generated method stub
byte b1 = 127;
byte b2 = 2;
byte b3 = (byte)(b1 + b2);
int i1 = b1 + b2;
System.out.println(b3);
System.out.println(i1);
int i2 = 2000000000;
int i3 = 2000000000;
int i4 = i2 + i3;
System.out.println(i4); // 오버플로우
long l = (long)i2 + (long)i3;
System.out.println(l); // 4000000000
}
}
public class Ex9 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int i = 10;
int i1 = 3;
int result = i % i1;
System.out.println(result);
i = 10;
i1 = 20;
double d = i / i1; // 4byte 연산
System.out.println(d); // 0.0
d = (double) i / i1; // 8byte 형 변환
System.out.println(d); // 0.5
byte b1 = 127;
byte b2 = 2;
int result1 = b1 + b2;
System.out.println(result1); // 129
byte b3 = (byte)(b1 + b2);
System.out.println(b3); // -127
i = 2000000000;
i1 = 2000000000;
result1 = i + i1;
System.out.println(result1); // 오버플로우 발생
long l = (long)i + (long)i1;
System.out.println(l); // 4000000000
char ch1 = 'A' + 1; // 변수에 값 지정할 경우 크기 벗어나지 않으면 오류 발생 x
char ch2 = 'A';
// char ch3 = ch2 + 1; // 4byte 연산
int i2 = ch2 + 1;
System.out.println(i2); // 66
char ch3 = (char)(ch2 + 1);
System.out.println(ch3); // B
short s1 = -10;
short s2 = 10;
System.out.println(-s1); // 10
// short s3 = -s1; // 정수는 4byte 연산 따라서 오류 발생
int result2 = -s1;
System.out.println(result2); // 10
char ch5 = 'A' + 5;
System.out.println(ch5); // F
char ch6 = 'D';
int i6 = ch6;
System.out.println(i6); //68
char ch7 = (char)(ch6 + 10);
System.out.println(ch7); // N
}
}