随笔分类 - java初学
java初学
摘要:public class yunsuan { public static void main(String[] args) { int a = 10; double b = 10.3; System.out.println(a+b); //隐式转换 byte c = 30; byte d = 100
阅读全文
摘要:1.安装java环境,装了之后环境就配置好了,不用再手动配置 2.建个文件夹和文件 写java程序 3.写代码 helloworld public class HelloWorld{ public static void main(String[] args){ System.out.println
阅读全文