2020年10月13日
摘要: package 商城库存清单程序设计;public class StoreList { public static void main(String[] args) { String macBrand="MacBookAir"; //苹果笔记本电脑 double macSize=13.3; doub 阅读全文
posted @ 2020-10-13 09:23 张德明 阅读(685) 评论(0) 推荐(0)
摘要: 1.package 赋值运算符;public class Example01 { public static void main(String[] args) { short s=3; int i=5; s+=i; System.out.println("s="+s); }} 结果: 2.packa 阅读全文
posted @ 2020-10-13 09:15 张德明 阅读(77) 评论(0) 推荐(0)