知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
為何少種了 ㄧ棵樹
1樓
#if 0

len= 314.159265
請按任意鍵繼續 . . .

s1= 45273, s2= 45105
請按任意鍵繼續 . . .

#endif

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define pi (4.0*atan(1.0))

int main()
{
// 為何少種了 ㄧ棵樹
int s1, s2, no, ct1;
double len, dl, x1;
len= 100*pi;
printf("\n len= %.6lf \n", len);
system("pause");
s1= 0;
s2= 0;
for (no=10;no<=300;no++) {
dl= len/no;
ct1= 0;
for (x1=0.0;x1<=len;x1+= dl) {
ct1++;
}
s1+= ct1;// 這個,偶爾會 少種 ㄧ棵樹
s2+= no;// 這個是 正確的
}
printf("\n s1= %d, s2= %d \n", s1, s2);
system("pause");
return(0);
}