int x,y; if(_______) __________; printf("x=%d,y=%d",x,y); 要求x=3 y=5
方法1 if(1) (x=3,y=5); //必须加()
方法2 if(x=3) y=5; //用条件赋值