Question

In c++ use bool functions to create and print a truth table for disconjunction and negation...

In c++ use bool functions to create and print a truth table for disconjunction and negation functionality and use it to print the truth table for equation ~ (p∨q) ≡~ p∧~ q. .

0 0
Add a comment Improve this question Transcribed image text
Answer #1
#include <iostream>

using namespace std;

int main() {
    cout << "p\tq\t\t~(pvq)\t\t~p^~q" << endl;
    for (int p = 0; p < 2; ++p) {
        for (int q = 0; q < 2; ++q) {
            cout << p << "\t" << q << "\t\t\t" << !(p||q) << "\t\t" << ((!p)&&(!q)) << endl;
        }
    }
    return 0;
}

Add a comment
Know the answer?
Add Answer to:
In c++ use bool functions to create and print a truth table for disconjunction and negation...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT