package jp.co.jid.calcSample; public class CalcSmaple06 { public static void main(String[] args) { // && System.out.println("true && false : " + (true && false)); // || System.out.println("false || true : " + (false || true)); // ! System.out.println("!true : " + (!true)); } }