#include <stdio.h> /* 測試scanf() 及浮點數(test-scanf.c) */ main() { float x; while (scanf("%f", &x) != EOF) printf("%f\n", x); } ...
確定! 回上一頁