会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
寒玉冷婳请
博客园
首页
新随笔
联系
管理
订阅
2021年4月30日
MySQl。分段函数
摘要: ##分段函数 case ##员工表中,根据薪资不一样,给不一样的评论 >4000,NB666 >3000,NB66 >2000,NB6 <2000,ZZ select sal, case when sal >4000 then "NB666" when sal >3000 then "NB66" w
阅读全文
posted @ 2021-04-30 09:17 寒玉冷婳请
阅读(113)
评论(0)
推荐(0)
2021年4月29日
python。乘法口诀表
摘要: for j in range(1,10): for i in range(1,j+1): print("%d*%d=%d \t"%(i,j,i*j),end="") print()
阅读全文
posted @ 2021-04-29 09:00 寒玉冷婳请
阅读(738)
评论(0)
推荐(0)
2021年4月27日
python献血
摘要: n=int(input("输入性别(男1,女2):"))t=int(input("输入体重:"))if n==1: if (t>65): print(400) else: print(300)else: if (t > 45): print(300) else: print(200)
阅读全文
posted @ 2021-04-27 15:52 寒玉冷婳请
阅读(110)
评论(0)
推荐(0)
2021年4月26日
css。。伪元素选择器
摘要: 伪元素名 描述 :first-letter 选择文本的首字母 :first-line 选择文本的首行 :after 在元素的后面添加内容 :before 在元素的前面添加内容
阅读全文
posted @ 2021-04-26 08:59 寒玉冷婳请
阅读(41)
评论(0)
推荐(0)
2021年4月24日
js、、、鼠标按下/弹起(onmousedown onmouseup)
摘要:
阅读全文
posted @ 2021-04-24 09:05 寒玉冷婳请
阅读(118)
评论(0)
推荐(0)
2021年4月22日
python求一个输入的3位数(简单)
摘要: i=int(input("输入一个3位数"))b=i//100s=i//10%10g=i%10u=g+s+bprint(u)
阅读全文
posted @ 2021-04-22 15:33 寒玉冷婳请
阅读(548)
评论(0)
推荐(0)
js。。。。。延时器
摘要: setTimeout(“函数名”,“毫秒数”)延时器,就是隔了多长时间后调用一次函数
阅读全文
posted @ 2021-04-22 09:09 寒玉冷婳请
阅读(98)
评论(0)
推荐(0)
2021年4月21日
css///////margin:外边距
摘要: margin-top/left/right/bottom 使用方式: (1)margin:30px 表示上下左右外边距都为30px (2)margin-left:30px 单独设置左外边距30px (3)margin: 10px 20px;上下为10px 左右20px (4)margin:10px
阅读全文
posted @ 2021-04-21 09:01 寒玉冷婳请
阅读(232)
评论(0)
推荐(0)
2021年4月20日
js。。。。。onmousewheel 滚轮
摘要:
阅读全文
posted @ 2021-04-20 18:52 寒玉冷婳请
阅读(33)
评论(0)
推荐(0)
PHP。。。。。。__toString()
摘要: 和java里的toString一样的 把对象转成字符串 打印对象的时候,会自动调用该方法
阅读全文
posted @ 2021-04-20 16:06 寒玉冷婳请
阅读(48)
评论(0)
推荐(0)
下一页