摘要: #include <stdio.h>#include <stdlib.h>#define LEN sizeof(struct node)struct node{ int data; struct node *next;};struct node * create() //创建链表{ struct n 阅读全文
posted @ 2021-06-11 23:07 不浪费时光 阅读(45) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h>#include <string.h>int main(){ int x,n,i,f=0,v=0,j=0,k,l,g=0; char book[6][50]={"马保国的闪电五连鞭","大郎该吃药了","山东菏泽曹县的秘密","舔狗日记","就是玩"}; char 阅读全文
posted @ 2021-06-11 22:53 不浪费时光 阅读(58) 评论(0) 推荐(0) 编辑
摘要: from turtle import* from math import* from random import* speed(0) bgcolor('black') w=window_width() h=window_height() pencolor('yellow') for i in ran 阅读全文
posted @ 2021-06-11 22:50 不浪费时光 阅读(109) 评论(0) 推荐(0) 编辑