xbessy0.cpp

来自「可以用于科学计算的库」· C++ 代码 · 共 39 行

CPP
39
字号
#include <string>
#include <fstream>
#include <iostream>
#include <iomanip>
#include "nr.h"
using namespace std;

// Driver for routine bessy0

int main(void)
{
        string txt;
        int i,nval;
        DP val,x;
        ifstream fp("fncval.dat");

        if (fp.fail())
          NR::nrerror("Data file fncval.dat not found");
        getline(fp,txt);
        while (txt.find("Bessel Function Y0")) {
          getline(fp,txt);
          if (fp.eof()) NR::nrerror("Data not found in fncval.dat");
        }
        fp >> nval;
        getline(fp,txt);
        cout << endl << "Bessel Function Y0" << endl;
        cout << setw(5) << "x" << setw(13) << "actual";
        cout << setw(15) << "bessy0(x)" << endl << endl;
        for (i=0;i < nval;i++) {
          fp >> x >> val;
          cout << fixed << setprecision(2);
          cout << setw(6) << x;
          cout << fixed << setprecision(7);
          cout << setw(13) << val << setw(14) << NR::bessy0(x) << endl;
        }
        fp.close();
        return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?