知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
double 的精確度
1樓
#if 0

 x= 9012334810160984.000,
 y= 9012334810160984.000
請按任意鍵繼續 . . .

#endif
// ----------------------------------------------


#include <iostream>

#include <stdlib.h>
#include <stdio.h>
#include <time.h>
// ----------------------------------------------

int main()  
 {
//
double x, y;
 
x= 10;
y= x + 1;
 
while (y > x) {
x= x * 1.001;
y= x + 1;
}
 
printf("\n x= %.3lf, \n y= %.3lf \n", x, y);
system("pause");
return 0;
 }// end of main()