#include<stdio.h>int main(){int a;scanf("%d",&a);if(a==4||5)printf("yes");elseprintf("no");return 0;}这个程序为什么a取几都输出yes
要看运算符优先级,