📄 emp2_02.cpp
字号:
#include"seqlists.H"
main()
{
SeqList L;
int i;
set_SeqList(L,"L1",1,12);
for(i=1;i<=15;i++)
L.data[i]=i;
display_SeqList(L);
get_SeqList(L);
clear_SeqList(L);
move_SeqList_to(L,50,80);
xchg_SeqList_elmn(L,1,12,20);getch();
xchg_SeqList_elmn(L,2,11,20); getch();
xchg_SeqList_elmn(L,3,10,20);getch();
xchg_SeqList_elmn(L,4,9,20);getch();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -