作业

来源:互联网 发布:电子书排版编辑软件 编辑:程序博客网 时间:2024/05/22 04:09
class Scale {
public static void main(String[] args) {
System.out.println(0b0000001);//4
System.out.println(0100);//64
System.out.println(100);//100
System.out.print(0x100);//256
}
}