#include<stdio.h>int main(){ int a,b; scanf("%2d,%*2s,%2d",&a,&b); printf("\na=%d,b=%d\n",a,b); return 0;}为什么scanf里加逗号会让y的值变成0