码迷,mamicode.com
首页 >  
搜索关键字:do it    ( 12356个结果
PHP没有定时器?
确实,PHP没有类似于JS中的setInterval或者setTimeout这样的原生定时器相关的函数。但是我们可以通过其他方式来实现,比如使用declare。 先来看看是如何实现的,然后我们再好好学习一下declare表达式到底是个什么东西。 function do_tick($str = '') ...
分类:Web程序   时间:2021-01-26 12:27:44    阅读次数:0
控制语句
1、选择语句 if if else switch 2、循环语句 for while do while 3、转向语句 break continue 4、返回语句 return ...
分类:其他好文   时间:2021-01-26 11:44:42    阅读次数:0
IELTS口语预测-2020年9-12月
Part 1: 住处 Do you live in a house or a flat? Which is your favourite room in your house / flat? What do you like about the area that you live in? Is t ...
分类:其他好文   时间:2021-01-22 12:11:42    阅读次数: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
第6节选择结构-if语句-switch语句
流程控制 流程控制语句分类 顺序结构 分支结构(if,switch) 循环结构(for,while,do..while) 顺序结构 顺序结构是程序中最简单最基本的流程控制,没有特定的语法结构,按照代码的先后顺序, 依次执行,程序中大多数代码都是这样执行的。 /* 顺序结构 */ public cla ...
分类:其他好文   时间:2021-01-18 11:32:02    阅读次数:0
java基础学习2
1.Scanner对象:获取用户的输入。java.util.Scanner import java.util.Scanner; //创建扫描对象,用于接收键盘数据Scanner scanner = new Scanner(System.in);//判断用户用没用输入字符串if(scanner.has ...
分类:编程语言   时间:2021-01-15 12:05:27    阅读次数:0
codeforces 1438 E. Yurii Can Do Everything (暴力)
题目链接:https://codeforces.com/contest/1438/problem/E 根据题目性质,答案不会太大 枚举左端点 \(l\), 令 \(k\) 为 \(a_l\) 的最高位,那么可能合法的右端点 \(r\) 一定在区间和小于 \(2^{k + 1}\) 的区间内,暴力寻找 ...
分类:其他好文   时间:2021-01-13 10:34:18    阅读次数:0
delphi中的LISTVIEW怎么与数据库连接
listview1.clear; with adoquery1 do begin Sql.text := 'Select * from table1'; Open ; while not eof do begin with listview1.items.add do begin caption : ...
分类:数据库   时间:2021-01-08 10:39:50    阅读次数:0
c语言中逆向显示数值
1、 #include <stdio.h> int main(void) { int i; do { puts("please input an integer."); printf("i = "); scanf("%d", &i); } while (i <= 0); while (i > 0) ...
分类:编程语言   时间:2021-01-08 10:28:25    阅读次数:0
快速排序
#include<bits/stdc++.h> using namespace std; int n; void mysort(int a[],int l,int r)//自己写的快排 { int mid=a[(l+r)/2];//找中间的数进行2分 int i=l,j=r; do{ while(a ...
分类:编程语言   时间:2021-01-05 10:39:05    阅读次数:0
12356条   上一页 1 ... 11 12 13 14 15 ... 1236 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!