開發平台(Platform): dev c++
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
無
問題(Question):
scanf 連輸入 只有最後一個變數有接收到值
餵入的資料(Input):
1
2
預期的正確結果(Expected Output):
預期連續輸入 長、寬 再連續printf 長寬高 是一開始輸入的值
輸入1
2 照理應該是輸出 1 2 呀
錯誤結果(Wrong Output):
結果是變成 0 2
程式碼(Code):
main()
{
unsigned short w, h, r;
scanf("%d",&w);
scanf("%d",&h);
printf("%d\t%d\n",w,h);
system("pause");
}
補充說明(Supplement):