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

📄 ddregistration.cpp

📁 financal instrument pricing using c
💻 CPP
字号:
// Implementation of Registration activity.
//
// Datasim Education BV (c) 2003
// 
// Modification dates:
// 23 July 2003 - MB - Started.
// 29 July 2003 - MB - Reading data from Excel into SimplePropertySet.
// 31 July 2003 

#include <iostream>
using namespace std;

// Initialize A, B and N with values from user.
void Registration(double& A, double& B, int& N)
{

		// Version 0.01

		cout << "Give lower value of interval: ";
		cin >> A;

		cout << "Give upper value of interval: ";
		cin >> B;

		cout << "Give number of subdivisions:  ";
		cin >> N;

}

⌨️ 快捷键说明

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