摘要: (部分浏览器不支持,推荐使用chome、火狐、搜狗、360安全浏览器,IE什么的趁早扔掉) 打开含有密码的页面,如下图: 在含有密码的输入框处单机鼠标右键,选择“审查元素” 在弹出的窗口中找到 type=”password” 将双引号中的password改为text即可看到明文密码 阅读全文
posted @ 2019-11-15 15:37 木子欢儿 阅读(577) 评论(0) 推荐(0) 编辑
摘要: <script> (function(){ if('{{ page.password }}'){ if (prompt('请输入文章密码') !== '{{ page.password }}'){ alert('密码错误!'); history.back(); } } })(); </script> 阅读全文
posted @ 2019-11-15 15:27 木子欢儿 阅读(894) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main() { int a, b; double x = 1.54; char ch; a = x; x = 12; b = 'a'; ch = 356; printf("a=%d\nx=%f\nb=%d\nch=\'%c\'\n",a,x,b,ch); 阅读全文
posted @ 2019-11-15 14:53 木子欢儿 阅读(419) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> int main(void) { int a = 1, b = 2, c = 4, y, z; y = a + b, a + c;/*由y=a+b和a+c组成的逗号表达式*/ z = (a + b, a + c);/*将逗号表达式a+b,a+c的值赋值给变量z*/ 阅读全文
posted @ 2019-11-15 11:10 木子欢儿 阅读(1200) 评论(0) 推荐(0) 编辑