main.cpp
来自「关于差分方程的一个程序」· C++ 代码 · 共 23 行
CPP
23 行
#include "global.h"
#include <iostream.h>
#include <math.h>
extern double sbegin,send,tbegin,tend;
extern double sstep,tstep;
extern int snstep,tnstep;
extern double** region1;
extern double** region2;
double sbegin = 0.0;
double send = 1.0;
double tbegin = 0.0;
double tend = 1.0;
void main()
{
menu();
cout << sbegin;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?