bpn.cpp
来自「用人工神经网络实现异或的功能。用反向传播算法(BP)来实现神经网络」· C++ 代码 · 共 22 行
CPP
22 行
// BPN.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "Bp.h"
int main(int argc, char* argv[])
{
//printf("Hello World!\n");
printf("Processing....... \n");
Bp *mybpnet=new Bp();
mybpnet->application();
printf("See the BPN.txt file\n");
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?