?? bessy.c
字號:
float bessy(n,x)
int n;
float x;
{
int j;
float by,bym,byp,tox;
float bessy0(),bessy1();
void nrerror();
if (n < 2) nrerror("Index n less than 2 in BESSY");
tox=2.0/x;
by=bessy1(x);
bym=bessy0(x);
for (j=1;j<n;j++) {
byp=j*tox*by-bym;
bym=by;
by=byp;
}
return by;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -