#include<stdio.h>int main(){ int x, y; scanf_s("%d,%d", &x & y); x > y ? printf("%d是最小值", y) : printf("%d是最小值", x);
}
收起
&x和&y中间缺个逗号
报告相同问题?