各位大哥,小弟有一题不知错在那了,请指教。
#include<stdio.h>
main()
{int x,y;
scanf("%d,%d",&x,&y);
if(x>y);
x=y;y=x;
else
x++;y++;
printf("%d,%d",x,y);}