摘要:
python爬虫入门 开发环境 ubuntu 16.04 sublime pycharm requests库 requests库安装: sudo pip install requests 第一个例子 import requests r=requests.get("http://www.baidu.c 阅读全文
摘要:
c语言贪吃蛇详解5.GameOver功能与显示成绩 以前我们已经做出来了一个能吃东西变长的蛇。不过它好像不会死。。。 现在就来实现一下game over的功能吧。 写个函数判断蛇是否撞到自己或者撞到墙: bool gameOver() { bool isGameOver=false; int sX= 阅读全文