?? exponentintegralfunction.cpp
字號:
//ExponentIntegralFunction.cpp
//指數(shù)積分函數(shù)
#include <iostream> //模板類輸入輸出流標準頭文件
#include <SpecialFunction.h> //數(shù)學變換頭文件
using namespace std; //名字空間
void main(void)
{
double x, y;
for(int i=0; i<10; i++)
{
x = 0.05 + 0.2 * i;
y = ExponentIntegralFunction(x);
cout << " x = " << x << " ExponentIntegralFunction(x) = " << y << endl;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -