?? 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 + -