C语言萌新,求指点

C语言新手,用单循环链表写约瑟夫环问题,但老是遇到这种情况 以下为源代码`#include <stdio.h> #include <stdlib.h> #include <malloc.h> typedef struct node { int num; int password; struct node *next; }Lnode; Lnode t; void Creat(Lnode L) { t
相关文章
相关标签/搜索