📅  最后修改于: 2022-03-11 15:04:34.790000             🧑  作者: Mango
#include
int main(){
A = 5;
B = 10;
if((A == 5) && (B < 11)){
printf(“Both conditions are ture”);
}
if(!(A==5)){
printf(“A is not equal to 5”);
}
if((A>=3) ||(B<=9)){
printf(“min any one condition is true”);
}
}