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

📄 winmain.cpp

📁 一个AI游戏的代码
💻 CPP
字号:
#include "Globals.h"
#include "Entities.h"
#include "Genetic.h"
#include "Troll.h"
#include <stdlib.h>
#include <iostream.h>
#include <time.h>
#include "Simulation.h"
#include <Windows.h>

int main( int argc, char ** argv )
{
	srand( time( 0 ) );

	DWORD timer = GetTickCount();

	cout << "One moment please..." << endl;

	Genetic ga;
	ga.RunEvolution();

	cout << "Duration of the experiment: " << (double) ( GetTickCount() - timer ) / 1000.0
	     << " seconds." << endl;

	return 0;
}

⌨️ 快捷键说明

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