Skip to content

React2github/java-mod-1-combining-operators-lab

 
 

Repository files navigation

Combining Operators Lab

Learning Goals

  • Write a program to display truth tables

Instructions

Write a program that displays the "truth table" for both the && and the || operators. A truth table is a list of all the possible results of operating on two boolean values.

Your output for the && operator should look similar to this:

Truth table for && operator
true && true = true
true && false = false
false && false = false
false && true = false

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%