码迷,mamicode.com
首页 >  
搜索关键字:word break    ( 26815个结果
MySQl5.7 忘记密码怎么办?
https://blog.csdn.net/weixin_43054397/article/details/90721094 MySQl5.7 忘记密码怎么办? 我们在安装使用MySQl 时,有时可能避免不了忘记密码,如果你忘记密码,可以按照如下方案进行操作: 找到my.ini 文件my.ini 文 ...
分类:数据库   时间:2021-01-22 12:06:26    阅读次数:0
c# 对word文档操作(dsoframer)
1 dsoframer下载地址:http://www.121down.com/soft/softview-90593.html 2 将下载控件复制到c:\windows\SysWOW64\路径下 dsoframer注册方法:在“开始”菜单找到“命令提示符”,右键选择“以管理员运行”(此处为重点),弹 ...
分类:Windows程序   时间:2021-01-22 11:41:44    阅读次数:0
How to repeat loop n times in Bash
for (( i=0; i<10; ++i)); do [ -e filename ] && break sleep 10 done ...
分类:其他好文   时间:2021-01-21 10:41:13    阅读次数:0
Markdown编辑器语法
Markdown/?mɑ?rkda?n/简介 Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档。 Markdown 语言在 2004 由约翰·格鲁伯(英语:John Gruber)创建。 Markdown 编写的文档可以导出 HTML 、Word、图像、PDF、Ep ...
分类:其他好文   时间:2021-01-20 12:11:07    阅读次数:0
Python
Python的第五天 1、break 和continue continue:跳过本次循环,进入下一次循环 break:结束当前循环 for i in range(1,6): print(f" {i} 层 ") if i == 3: print("三层坏了") continue for j in ra ...
分类:编程语言   时间:2021-01-20 11:59:39    阅读次数:0
树莓派启动后自动发送本地IP 到指定邮箱
在 /etc/init.d 目录下建立 GetLocalip.py 文件 #coding: utf-8 import smtplib from email.mime.text import MIMEText from email.header import Header import socket ...
分类:其他好文   时间:2021-01-20 11:43:31    阅读次数:0
浅析 希尔排序
希尔排序 与插入排序很类似,区别是,有一个叫 增量序列 的东西 增量序列 是一个序列 h1, h2, h3, h4......,其中必须 h1 = 1 常见的是将数组大小除2,直到等于1 程序 void shellSort(int N[], int ct) { int increment, tmp, ...
分类:编程语言   时间:2021-01-18 11:38:07    阅读次数:0
[LeetCode] 1003. Check If Word Is Valid After Substitutions 检查替换后的词是否有效
Given a string , determine if it is?valid. A string is?valid?if, starting with an empty string , you can?transform into after performing the following ...
分类:其他好文   时间:2021-01-18 11:15:29    阅读次数:0
服务端升级为select模型处理多客户端2
对fd_set的理解,可以参考下:https://www.cnblogs.com/wuyepeng/p/9745573.html int select(int nfds, fd_set* readset, fd_set* writeset, fe_set* exceptset, struct tim ...
分类:其他好文   时间:2021-01-16 12:04:47    阅读次数:0
markdown语法
标题 ? #+空格 #号个数表示几级标题 最多到六级 三级标题 四级标题 字体样式 *:斜体 Hello Word **:粗体 Hello Word ***:斜体加粗体 Hello Word ~~:删除符 Hello Word 代码 public void main(String[] args){} ...
分类:其他好文   时间:2021-01-15 11:45:56    阅读次数:0
26815条   上一页 1 ... 35 36 37 38 39 ... 2682 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!