welcome.c.bak

来自「图书管理系统」· BAK 代码 · 共 17 行

BAK
17
字号
/* file_name:	welcome.c
 * author:	wangtiezhen miuliang @ Xidian University
 * description:	
 */

void welcome(void)
{
	if(user.type == teacher)
		printf("Hi,commander, %s\n", user.name);
	if(user.type == student)
		printf("Hello,student, %s\n", user.name);
	return;
}



⌨️ 快捷键说明

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