xsobseq.cpp
来自「这是C++数值算法(第二版)的源代码,其中包含了目前一些比较常用的数值计算的算法」· C++ 代码 · 共 23 行
CPP
23 行
#include <iostream>
#include <iomanip>
#include "nr.h"
using namespace std;
// Driver for routine sobseq
int main(void)
{
const int n2=3;
int i,n1=(-1);
Vec_DP x(n2);
NR::sobseq(n1,x);
cout << fixed << setprecision(5);
for (i=0;i<32;i++) {
NR::sobseq(n2,x);
cout << setw(11) << x[0] << setw(11) << x[1];
cout << setw(11) << x[2] << setw(6) << (i+1) << endl;
}
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?