#include<stdio.h> main() { int a,b; scanf("%d,%d",&a,&b); printf("a=%d,b=%d",a,b); } 为什么这个程序我输入12,56最后的运行结果不是a=12,b=56 查看完整描述