start_end_show.h

来自「3层BP网络」· C头文件 代码 · 共 32 行

H
32
字号
#include <stdio.h>
#include <conio.h>

int Start_Show()
{
system("CLS");
printf("\n");
printf("		   ***************************************\n");
printf("		   * This is a neural network simulation *\n");
printf("		   * with Back-Propagation algorithem.   *\n");
printf("	  	   ***************************************\n");
printf("\n\nBefore starting, please read the following carefully:\n\n");
printf("The program of BP can study itself for no more than 1,000,000 times. If\nsurpassing the number,the program will be ended by itself in preventing\nrunning infinitely because of error!\n");
printf("\n\n\n");
printf("Now press any key to start...\n");
getch();
system("CLS");
return 0;
}

int End_Show()
{
printf("\n\n---------------------------------------------------\n");
printf("The program has reached the end successfully!\n\nPress any key to exit!\n\n");
printf("\n");
printf("            ****************************************\n");
printf("            * This is the end of the program which *\n");
printf("            * can be calculated the BP model!      *\n");
printf("            ****************************************\n");
getch();
exit(0);
}

⌨️ 快捷键说明

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