以下是我寫:
for (count = 10.0;count >= 1.0; count -= 0.5)
printf("%d ", count);
但output出10 9 8 7 6.....1
之後我轉了"%f" 但output0.00000
而我想要的output是
10.000000 9.50000 9.00000 8.50000 8.00000 7.50000 ...
請問應該如何寫??
更新1:
先多謝兩位! 但如果份data裡面有: 一個係decimal number, 另一個係real number 即係同時出到係: 10 9 8 7 6 5 4 3 2 1 10.00000 9.50000 9.00000 ... 咁應該點做?