编辑代码

# include <stdio.h>
int main (void)
{
 int x=1,y=1;
 {
     int y=2;
     x=3;
 printf("%d,%d\n",x,y);
 }
printf("%d,%d\n", x,y);
return 0 ;
}