📄 start_end_show.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -