摘要: 逻辑运算符: public class Demo{ //与(and) 或(or) 非(取反) public static void main(String [] args){ boolean a = true; bolean b = false; System.out.println(a&&b); 阅读全文
posted @ 2021-09-30 21:23 努力学爪哇 阅读(26) 评论(0) 推荐(0) 编辑