📄 header.c
字号:
/*************************************************************************/
/* */
/* Print header for all C4.5 programs */
/* ---------------------------------- */
/* */
/*************************************************************************/
#define RELEASE "8"
PrintHeader(Title)
/* ----------- */
char *Title;
{
char *ctime(), TitleLine[80];
long clock, time();
short Underline;
clock = time(0);
sprintf(TitleLine, "C4.5 [release %s] %s", RELEASE, Title);
printf("\n%s\t%s", TitleLine, ctime(&clock));
Underline = strlen(TitleLine);
while ( Underline-- ) putchar('-');
putchar('\n');
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -