离散数学编程实现真值表输出

根据给出的命题数n与对应的真值写出真值表

#include 
#include 
using namespace std;
void shuru(char *p,int s);//输入T or F
void shuchu(char *p,int s);//输出真值表
void shizi(char *p,int s);//输出对应的主析取式,主合取式
int main()
{
	int n;
	cout<<"input the value of n"<>n;
	cout<<"input"<>h;
				if(h=='T' || h=='F')
				{
				p[i]=h;
				break;
				}
				else
				{
					getchar();
				}
			}
	}
}
void shuchu(char *p,int s){
	int k=0,c[2]={0,1};
	while(k

 运行结果:

离散数学编程实现真值表输出_第1张图片

你可能感兴趣的:(离散数学,编程,真值表)