码迷,mamicode.com
首页 >  
搜索关键字:do while循环    ( 14864个结果
2、常见Dos命令
常见Dos命令 打开CMD的几种方式 win键→打开系统→命令提示符 win键+R打开运行界面并输入cmd后回车 找到随便一个文件夹,Shift+鼠标右键→选择在此处打开Powershell窗口 此时的界面与平时的CMD虽然不同,但是功能是一样的 在资源管理器的地址栏输入cmd+空格+相应地址 Do ...
分类:其他好文   时间:2021-04-14 12:34:15    阅读次数:0
linux shell命令之脚本要有足够的提示
一个有参数但无提示说明的脚本#login1.sh: 用户登录,判断用户输入的用户名和密码是否错误 vi login1.sh #!/bin/bash for ((i=0; i < 3; i++))do read username read password if test "$username" = ...
分类:系统相关   时间:2021-04-14 11:41:38    阅读次数:0
c语言入门教程–-6循环语句
c语言入门教程–-6循环语句 c语言提供了以下几种循环类型。while循环for 循环do…while 循环 while循环 #include <stdio.h> int main () { /* 局部变量定义 */ int a = 10; /* while 循环执行 */ while( a < 2 ...
分类:编程语言   时间:2021-04-13 12:12:17    阅读次数:0
Swift读取Text文本文件
func getTextFileStr(filename:String!) -> String! { if let path = Bundle.main.path(forResource: filename, ofType: "txt") { do { let data = try String(c ...
分类:编程语言   时间:2021-04-12 12:35:51    阅读次数:0
Python基础(十四):while循环与break、continue关键字
前面我们已经学习了for循环,今天再带着大家讲述一下while循环。那么for循环和while循环,到底有什么区别呢? Python中for循环和while循环本质上是没有区别的,但是在实际应用上,针对性不太一样。 for循环,主要应用在遍历中,体现的是遍历二字; while循环,主要用于判断符合条 ...
分类:编程语言   时间:2021-04-12 12:16:44    阅读次数:0
【Mysql】主从复制
主节点配置 主机配置文件 主要配置有以下 server-id=1 #服务器id (主从必须不一样) log-bin=mysql-bin # 打开日志(主机需要打开),这个mysql-bin 可自定义,也可加上路径 binlog-do-db=dblog #要给从机同步的库 binlog-ignore- ...
分类:数据库   时间:2021-04-12 12:14:45    阅读次数:0
LQ Forum Rules
Forum Rules Registration to this forum is free! We do insist that you abide by the rules and policies detailed below. If you agree to the terms, pleas ...
分类:其他好文   时间:2021-04-12 12:05:47    阅读次数:0
2021-2022学年英语周报八年级第20期答案及试题
进入查看:2021-2022学年英语周报八年级第20期答案及试题 Do nothing by halves.凡事不可半途而废。Don’t claim to know what you don’t know.不要不懂装懂。Don’t have too many irons in the fire.不要 ...
分类:其他好文   时间:2021-04-10 13:11:37    阅读次数:0
uboot
uboot启动代码流程 board.c文件__attribute__((nomips16)) void board_init_r (gd_t *id, ulong dest_addr)函数 1、调用do_bootm if(BootType == '3') { char *argv[2]; sprin ...
分类:其他好文   时间:2021-04-09 12:50:57    阅读次数:0
10.4.2 ListView.ScrollViewChange存在的问题
procedure TPageListDialogFrame.ListView1ScrollViewChange(Sender: TObject); var allheight: real; begin with Sender as TListView do begin allheight := S ...
分类:其他好文   时间:2021-04-07 10:29:44    阅读次数:0
14864条   上一页 1 ... 6 7 8 9 10 ... 1487 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!