You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
867 B
22 lines
867 B
void Welcome()
|
|
{
|
|
system("COLOR 6f");
|
|
printf("\n");
|
|
printf("\n");
|
|
printf("*———————————————湖南工业大学—————————————————————\n");
|
|
printf("*=============================通信工程1803班=========================================\n");
|
|
printf("*=========================欢迎使用学生信息管理系统!==================================\n");
|
|
}
|
|
void Exit()
|
|
{
|
|
system("COLOR 3f");
|
|
printf("----------------------------学生信息管理系统-----------------------------------------\n");
|
|
printf("\n");
|
|
printf("---------------------------制作人: 周韬 周远航---------------------------------------\n");
|
|
printf("\n");
|
|
printf("============================期待您的下次使用=========================================\n");
|
|
printf("\n");
|
|
printf("==================================再见!==============================================\n");
|
|
printf("\n");
|
|
}
|