码迷,mamicode.com
首页 >  
搜索关键字:do it    ( 12356个结果
jQuery
""" jQuery内部封装了原生的js代码(还额外添加了很多的功能) 能够让你通过书写更少的代码 完成js操作 类似于python里面的模块 在前端模块不叫模块 叫 “类库” 兼容多个浏览器的 你在使用jQuery的时候就不需要考虑浏览器兼容问题 jQuery的宗旨 write less do m ...
分类:Web程序   时间:2020-05-19 18:10:19    阅读次数:72
File I/O
To read a file in C, you must create a pointer to the file. To do this, you use the FILE data type:#include <stdio.h> /* You need this include file to ...
分类:其他好文   时间:2020-05-19 12:24:55    阅读次数:53
循环(while,do...while)
Java中有三种主要的循环结构: while 循环 do…while 循环 for 循环 for循环基础部分,上节已经叙述过,这边主要介绍while循环和do...while循环 1.当循环次数不固定时,可以使用while循环,下面图解while循环的执行流程 2.对于 while 语句而言,如果不 ...
分类:其他好文   时间:2020-05-18 20:50:09    阅读次数:69
D. Game With Array
Petya and Vasya are competing with each other in a new interesting game as they always do. At the beginning of the game Petya has to come up with an a ...
分类:其他好文   时间:2020-05-17 13:32:47    阅读次数:135
007_stdc_C语言基础
回顾: 1. continue; break; 跳出一次循环 break 跳出整循环 2. 多重循环 3. while do while while(条件) //循环次数不确定 { } for 带次数的循环 do while(); 先执行一次循环体里面的语句 在判断条件 for或者 while 先判 ...
分类:编程语言   时间:2020-05-17 09:25:00    阅读次数:59
Codeforces Round #643 (Div. 2) D. Game With Array(构造)
Petya and Vasya are competing with each other in a new interesting game as they always do. At the beginning of the game Petya has to come up with an a ...
分类:其他好文   时间:2020-05-16 23:37:41    阅读次数:129
在DBGrid中用代码实现按回车键跳到下一格的方法
示例: if Key = 13 then //回車後跳到下一格 with TDbgrideh(ActiveControl) do begin if Selectedindex < (FieldCount - 1) then Selectedindex := Selectedindex + 1 els ...
分类:数据库   时间:2020-05-16 16:54:03    阅读次数:64
《PHP与Dreamweaver基础教程(英)David Powers_陈宗斌译-带书签 》高清pdf下载链接
《PHP与Dreamweaver基础教程(英)David Powers_陈宗斌译-带书签 》高清pdf下载链接 百度网盘链接:https://pan.baidu.com/s/1J0Xl3Tq5Sv0h2w3wzbs2Aw 提取码:n67c 下载链接2:http://ziliaoshare.cn/Do ...
分类:Web程序   时间:2020-05-16 16:49:54    阅读次数:104
删除mongodb iteratior报错:java.lang.UnsupportedOperationException: Cursors do not support removal
错误信息 Caused by: java.lang.UnsupportedOperationException: Cursors do not support removal at com.mongodb.client.internal.MongoBatchCursorAdapter.remove( ...
分类:数据库   时间:2020-05-16 12:39:58    阅读次数:74
tzoj:3613 突破包围
http://www.tzcoder.cn/acmhome/problemdetail.do?&method=showdetail&id=3613 算出两两之间min距离,然后从起点开始循环时间点,到的了的地方进队 #include<bits/stdc++.h> using namespace st ...
分类:其他好文   时间:2020-05-16 10:55:49    阅读次数:64
12356条   上一页 1 ... 40 41 42 43 44 ... 1236 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!