?? showall.c
字號:
#include "common.h"
/*********************************************************
函數(shù)名:showAll
形參:要處理的數(shù)組team,數(shù)組中的人數(shù)count
返回值:無
函數(shù)功能:遍歷鏈表輸出所有數(shù)據(jù)
作者:xyh
編寫日期:2006-8-8
**********************************************************/
void showAll(MEMBER team[],int count){
list(team,count);
printf("\n數(shù)據(jù)顯示完畢!\n\n");
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -