浮點常數

類似於整數常數,使用浮點數常數亦可增加程式碼的可讀性,在編譯程式時,編譯器會自動將浮點數常數轉換成可用於運算的數值。

範例:
n = .005;

浮點數常數可以被表示為科學記號 E 或者 e,即指數表示法。

浮點數常數 等於 又等於
10.0 10
2.34E5 2.34 * 10^5 234000
67e-12 67.0 * 10^-12 .000000000067

語法參考主頁面

本頁由熱血青年 LBU 譯自英文版。

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.