⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xcaldat.cpp

📁 这是C++数值算法(第二版)的源代码,其中包含了目前一些比较常用的数值计算的算法.
💻 CPP
字号:
#include <fstream>
#include <iostream>
#include <iomanip>
#include <string>
#include "nr.h"
using namespace std;

// Driver for routine caldat

int main(void)
{
        const string name[]={"","january","february","march",
          "april","may","june","july","august","september",
          "october","november","december"};
        int i,id,idd,im,imm,iy,iyy,j,n;
        string txt;
        ifstream fp("dates1.dat");

        // Check whether caldat properly undoes the operation of julday
        if (fp.fail())
          NR::nrerror("Data file dates1.dat not found");
        getline(fp,txt);
        fp >> n;
        getline(fp,txt);
        cout << endl << setw(15) << "original date:";
        cout << setw(44) << "reconstructed date:" << endl;
        cout << setw(8) << "month" << setw(6) << "day" << setw(7) << "year";
        cout << setw(16) << "julian day" << setw(13) << "month";
        cout << setw(6) << "day" << setw(7) << "year" << endl << endl;
        for (i=0;i < n;i++) {
          fp >> im >> id >> iy;
          getline(fp,txt);
          j=NR::julday(im,id,iy);
          NR::caldat(j,imm,idd,iyy);
          cout << setw(10) << name[im] << setw(4) << id << setw(7) << iy;
          cout << setw(14) << j << setw(17) << name[imm];
          cout << setw(4) << idd << setw(7) << iyy << endl;
        }
        return 0;
}

⌨️ 快捷键说明

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