Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,我有几个这样的问题。我只需要其中之一的帮助。你也能解释你是如何得到答案的吗?我将不胜感激
显示 ab(!c) + !ab(!c) 到 b(!c) 的代数化简。
我根据您的需要创建了三个变量并选择了随机值。
boolean a=true; boolean b=false; boolean c=true; boolean res1; boolean res2; boolean final_Res; res1=(a && b) &&(!c) || (!a && b && !c); res2=(b && !c); final_Res=res1==res2; System.out.println(final_Res);
希望这有助于解决您的其他问题..