2017年7月6日

看看人家写的代码

摘要: 输入两个数A,B,如果相等则返回AorB,如果不相等则返回小的到大的数的和 我的: def get_sum(a,b): sum = 0 if a==b: return a if b<a: a, b = b, a for i in range(a,b+1): sum += i return sum 人 阅读全文

posted @ 2017-07-06 22:27 run_qin 阅读(165) 评论(0) 推荐(0) 编辑

鼠标进入,显示div

摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> .box{ width:500px; height:600px; background- 阅读全文

posted @ 2017-07-06 14:39 run_qin 阅读(245) 评论(0) 推荐(0) 编辑

导航