#include using namespace std; int main() { int x=3,y=2; if (x>y) { cout<<"x不等于y\n"; cout<<"y大于x\n"; cout<<"x小于y\n"; } cout<<"x不等于0\n"; return 0; }