當我嘗試使用scanf
關於C和Eclipse - 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對...」,什麼都不做
爲什麼呢?
當你說「什麼也不做」,你的意思是什麼?輸入6位數字後它會掛起嗎?還是在它進入之前崩潰?只是要清楚:'scanf'需要來自標準輸入的輸入,所以你必須實際輸入這6個數字才能讓程序進行。 – amaurea