以下程式示範函數log() 的使用 #include <stdio.h> #include <math.h> int main(void) { double i = 1.0; while (i <= 10.0) { printf("%f\n", log(i)); i += 1.0; } ...
確定! 回上一頁