如何修改此真值表,使其显示1和0而不是真和假。
public class Table {
public static void main(String args[]){
boolean p,q;
System.out.println("P\tQ\tAND\tOR\tXOR\tNOT");
p = true;
q = true;
System.out.print(p+"\t"+q+"\t");
System.out.print((p&q)+"\t"+(p|q)+"\t");
System.out.println((p^q)+"\t"+(!p));
p = true;
q = false;
System.out.print(p+"\t"+q+"\t");
System.out.print((p&q)+"\t"+(p|q)+"\t");
System.out.println((p^q)+"\t"+(!p));
p = false;
q = true;
System.out.print(p+"\t"+q+"\t");
System.out.print((p&q)+"\t"+(p|q)+"\t");
System.out.println((p^q)+"\t"+(!p));
p = false;
q = false;
System.out.print(p+"\t"+q+"\t");
System.out.print((p&q)+"\t"+(p|q)+"\t");
System.out.println((p^q)+"\t"+(!p));
}
}
答案 0 :(得分:1)
一个简单的解决方案是使函数toDigit(boolean value)
为false
返回0,为true
返回1;然后可以在打印命令中使用它,而不仅仅是打印布尔值,例如
System.out.print(toDigit(p)+"\t"+toDigit(q)+"\t");
System.out.print(toDigit(p&q)+"\t"+toDigit(p|q)+"\t");
System.out.println(toDigit(p^q)+"\t"+toDigit(!p));
答案 1 :(得分:1)
在Java中,存在无逻辑xor运算符,只有一个用于按位运算!
请参阅Oracle.com - Operators作为参考
无论如何,这里是您从true
和false
字符串到1
和0
的所需转换:
public static void main(String[] args) {
System.out.println("P\tQ\tAND\tOR\tXOR\tNOT(p)");
printTable(true, true);
printTable(true, false);
printTable(false, true);
printTable(false, false);
}
private static void printTable(final boolean p, final boolean q) {
System.out.printf("%s\t", p ? "1" : "0");
System.out.printf("%s\t", q ? "1" : "0");
System.out.printf("%s\t", p&&q ? "1" : "0");
System.out.printf("%s\t", p||q ? "1" : "0");
System.out.printf("%s\t", p^q ? "1" : "0");
System.out.printf("%s\t", !p ? "1" : "0");
System.out.printf("\n");
}
输出
P Q AND OR XOR NOT (p)
1 1 1 1 0 0
1 0 0 1 1 0
0 1 0 1 1 1
0 0 0 0 0 1
答案 2 :(得分:0)
一个简单的方法是:
boolean flag;
//...
System.out.println(flag ? 1 : 0);
答案 3 :(得分:0)
这是一本简单的挑战,来自“Java:初学者指南 - 第五版"作者:Herbert Schildt。因此,我认为提供完整的解决方案没有问题。以下是对blalasaadri的建议的适应性。
public class Table {
public static void main(String[] args) {
boolean p, q;
// below is an alternative truth table in binary form (0s and 1s)
System.out.println("P\tQ\tAND\tOR\tXOR\tNOT");
p = true; q = true;
System.out.print(toBinary(p) + "\t" + toBinary(q) + "\t");
System.out.print(toBinary(p&q) + "\t" + toBinary(p|q) + "\t");
System.out.println(toBinary(p^q) + "\t" + toBinary(!p) + "\t");
p = true; q = false;
System.out.print(toBinary(p) + "\t" + toBinary(q) + "\t");
System.out.print(toBinary(p&q) + "\t" + toBinary(p|q) + "\t");
System.out.println(toBinary(p^q) + "\t" + toBinary(!p) + "\t");
p = false; q = true;
System.out.print(toBinary(p) + "\t" + toBinary(q) + "\t");
System.out.print(toBinary(p&q) + "\t" + toBinary(p|q) + "\t");
System.out.println(toBinary(p^q) + "\t" + toBinary(!p) + "\t");
p = false; q = false;
System.out.print(toBinary(p) + "\t" + toBinary(q) + "\t");
System.out.print(toBinary(p&q) + "\t" + toBinary(p|q) + "\t");
System.out.println(toBinary(p^q) + "\t" + toBinary(!p) + "\t");
}
// this method exchanges true for 1, and false for 0
private static int toBinary(boolean value) {
if(value == true)
return 1;
else
return 0;
}
}