#include <stdio.h> int main() { int a,b; printf("Please input a,b:(隔开数据标志请用空格分开)"); scanf("%d %d",&a,&b); printf("a=%d,b=%d\n",a,b); return 0; }
看看啊