摘要: public class Demo03 { public static void main(String[] args) { //整数拓展: 进制 二进制 八进制0 十进制 十六进制0x int i = 10; int i2 = 010;//八进制0 int i3 = 0x10;//十六进制0x 0 阅读全文
posted @ 2021-02-22 17:05 小阿丁 阅读(77) 评论(0) 推荐(0)
摘要: 学习Java第二天 1. 注释 ​public class hello,world { public static void main(String[] args) { //单行注释 //输出一个hello,Wrold! System.out.println("hello,wrold!"); }}/ 阅读全文
posted @ 2021-02-22 00:31 小阿丁 阅读(35) 评论(0) 推荐(0)