代码是这个:
#include<stdio.h>
int main()
{
int a, b;
scanf("%2d%*2s%2d", &a, &b);
printf("%d,%d\n", a, b);
return 0;
}
运行结果如下:
%*2s是指跳过2个字符赋值吗?
帮忙解答一下
代码是这个:
#include<stdio.h>
int main()
{
int a, b;
scanf("%2d%*2s%2d", &a, &b);
printf("%d,%d\n", a, b);
return 0;
}
运行结果如下:
%*2s是指跳过2个字符赋值吗?
帮忙解答一下