以下為浮點數型態做算術運算的例子,請留意,浮點數型態不能做取餘數的計算 #include <stdio.h> int main(void) { float a, b, c; a = 8.3; b = 2.2; c = a + b; ...
確定! 回上一頁