📄 main.cpp
字号:
/*********************************************
Copyleft!
FileName: main.h
Author: cjhacker
Version: 1.0
Description: Main Function
*********************************************/
#include "CList.h"
Status main( )
{
int number, password;
printf( "Please input number:" );
scanf( "%d", &number );
printf( "Please input first password:" );
scanf( "%d", &password );
CList L;
CList_Inital( L, number );
LPElemtype curpos = L.elem;
while ( L.listsize > 0)
{
LPElemtype temp;
curpos = CList_GetElem( curpos, password-1 );
password = CList_GetPassword( curpos );
printf( "%d ", CList_GetNumber( curpos ) );
temp = curpos->next;
CList_DeElem( L, curpos );
curpos = temp;
}
getchar();getchar();
return OK;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -