摘要: Java快速入门 1、需求说明 public class Hello { //编写一个main方法 public static void main(String[] args) { System.out.println("hello,world!"); } } 2、课堂小练习 public clas 阅读全文
posted @ 2021-07-23 23:35 多瑞C 阅读(71) 评论(0) 推荐(0)
摘要: Java语言概述 1、什么是程序 程序:计算机执行某些操作或解决某个问题而编写的一系列有序指令的集合 举例说明: public class TestDemo01 { public static void main(String[] args) { int result = 1 + 1; System 阅读全文
posted @ 2021-07-23 12:47 多瑞C 阅读(42) 评论(0) 推荐(0)