2020年3月13日
摘要: 实验1: 答题: #include"sqlist.cpp" void main() { SqList *L; ElemType e; InitList(L); ListInsert(L,1,'a'); ListInsert(L,2,'b'); ListInsert(L,3,'c'); ListIns 阅读全文
posted @ 2020-03-13 11:59 Noraa 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1、使用turtle库绘制一个红色五角星图形 import turtle turtle.pencolor('black') turtle.fillcolor("red") turtle.begin_fill() for i in range(5): turtle.forward(100) turtl 阅读全文
posted @ 2020-03-13 11:35 Noraa 阅读(1158) 评论(0) 推荐(0) 编辑