#include

时间:2022-02-20 06:52:53

可以使用bool和true、false

输出是1或者0

 #define _CRT_SECURE_NO_WARNINGS

 #include<stdio.h>
#include<stdbool.h> main()
{
bool b = > ;
bool t = true; t = ; printf("%d\n", b);// system("pause");
}

相关文章