随笔分类 - 前端歌谣-前端java学习
歌谣-前端java学习
摘要:
阅读全文
摘要:
阅读全文
摘要:
阅读全文
摘要:2
阅读全文
摘要:public class ValueDemo1{ public static void main(String[] args){ //输出hello world //数据类型 int(整数) int a =10; System.out.println(a); } }
阅读全文
摘要:public class ValueDemo1{ public static void main(String[] args){ //输出hello world System.out.print("我是歌谣"); System.out.print(6666); } }
阅读全文
摘要:public class HelloWorld{ public static void main(String[] args){ //输出hello world System.out.print("hello world"); } }
阅读全文
摘要:public class ValueDemo1{ public static void main(String[] args){ //变量的修改 int count = 0; //上去以为乘客 count=count+1; //下去一个乘客 count=count-1 //打印 System.out
阅读全文