/*
中午:
1、原码反码补码,练习题做一下。
2、熟悉下各个数据类型。定义出该类型的变量,然后输出结果。
byte b = 200;
sop(b);
3、定义各个类型的变量,然后输出。
*/
/*
已知原码求补码
0b11010100(原码) 求补码
0b10101011(反码)
00000001(+1)
0b10101100(补码)
已知补码求反码
0b10001110(补码) 求原码
00000001(-1)
0b10001100(反码)
0b11110011(原码)
*/
class Demo2 {
public static void main(String[] args) {
byte a = 50;
System.out.println(a);
//byte b = 200;
//System.out.println(b);
short c = 288;
System.out.println(c);
int d = 9699;
System.out.println(d);
long e = 888888;
System.out.println(e);
float f = 3.14f;
System.out.println(f);
double g = 3.1415926;
System.out.println(g);
char h = 'a';
System.out.println(h);
boolean i = false;
System.out.println(i);
boolean j = true;
System.out.println(j);
}
}
基础第三天,,,,练习题,,,,不对的请指出,..... |
|