+ 1
Who has ideas on how to create a boolean function calculator for a particular function to display its min and max terms?
Minterms and Maxterms
5 Respostas
+ 1
What is the function supposed to do?
+ 1
The program should ask the user for an input(boolean function) and the program should display the minterms and maxterms of that function as output. Any ideas?
+ 1
Which language ?
please put the language you use in the tags
What do you mean with minterms ?
0
The language is C# and minterms are two(2) or more binary variables combined with an AND operation and for maxterms an OR operation like for example: a 3 variable boolean function which has a minterm x'y'z with corresponding maxterm of x+y+z'.
- 1
Sorry I have no clue on binairy calculations.
From c# 7 you can specify binairy numbers, but I am not sure that that is gone help you.
int nineteen = 0b10011;
The prefix 0b stands for binairy.