JiZiHe

导航

 

2022年4月10日

摘要: package operator;public class Demo06 { public static void main(String[] args) { /* A = 0011 1100 B = 0000 1101 A&B = 0000 1100 A|B = 0011 1101 A^B = 0 阅读全文
posted @ 2022-04-10 15:11 努力努努力 阅读(29) 评论(0) 推荐(0)
 
摘要: package operator;//逻辑运算符public class Demo05 { // 或(and) 或(or) 非(取反) public static void main(String[] args) { boolean a = true; boolean b =false; Syste 阅读全文
posted @ 2022-04-10 15:10 努力努努力 阅读(19) 评论(0) 推荐(0)