当我尝试使用scanf
int main() {
int x1,x2,x3,y1,y2,y3;
printf("Enter 3 pairs of positive integers separated by spaces:\n");
scanf("%u %u %u %u %u %u", &x1, &y1, &x2, &y2, &x3, &y3);
我让程序运行,就像输入一样。然后我输入了输入,但它打印了“输入 3 对......”并且什么也不做
这是为什么?