代码搜索:有限差分
找到约 10,000 项符合「有限差分」的源代码
代码结果 10,000
www.eeworm.com/read/480097/1323039
txt 陈锋-5分.txt
/*运行前提:在源程序目录下存在input.txt文件,并且该文件已经按一定格式存储若干值*/
#include
#include
#include
int q(int,int);//求整数的划分个数
int main()
{
int n;//要划分的正整数值
ifstream fin("inpu
www.eeworm.com/read/480097/1323040
txt 梁淘-5分.txt
#include
#include
#include
int q(int,int);
void main(void)
{
/*从文件中读出数据*/
int nn;
ifstream fopen("input.txt");
if (! fopen)
{
cout
www.eeworm.com/read/480097/1323043
txt 刘晖-6分.txt
#include
#include
void perm(int *out,int g,int h); //函数声明
ofstream fout("output.txt");
int main ()
{
int n,k,*a;
ifstream fin("input.txt",ios::nocreate,filebuf:
www.eeworm.com/read/480097/1323044
txt 余新华-5分.txt
/*棋盘覆盖问题求解程序*/
/*本程序运行前提:
在源程序目录下存在input.txt文件,并且该文件已经按一定格式存储若干值
/*本程序在tc++3.0和vc++6.0上运行通过*/
#include
#include
#include
int tile;//L型骨牌的编号
class chess//
www.eeworm.com/read/480097/1323045
txt 周恒-5分.txt
#include
#include
#include
#include
int tile; //L型骨牌编号
int **chessarr;
void chessboard(int row0,int col0,int size,int sprow,int spcol) /
www.eeworm.com/read/480097/1323046
txt 王敏-6分.txt
#include
void move(int n,char a,char b,ofstream& out1)
{
out1
www.eeworm.com/read/480097/1323048
txt 张福泉-6分.txt
#include
void move(int number,char A1,char A2,ofstream& out)//定义圆盘移动函数
{
out
www.eeworm.com/read/480097/1323049
txt 董凌-6分.txt
#include
#include
#include
class board
{
private:
int n;
int m;
int *x;
int *bestx;
int bestd;
int *total;
www.eeworm.com/read/480097/1323050
txt 陈锋-6分.txt
/*本程序运行前提: 在源程序目录下存在input.txt文件,并且该文件已经按一定格式存储若干值*/
#include
#include
#include
class board
{
private:
int n,//电路板数
m,//连接块数
www.eeworm.com/read/480097/1323052
txt 孙锋-4.8分.txt
#include
#include
#include
int n;
int totalweight;
int *data;
int *bestx;
void readData()
{
ifstream inStream;
inStream.open("input.txt");
if(!inStream)