declare @n intdeclare @rowcount int declare @name varchar(50)create table #temp( id int identity(1,1), employeeName nvarchar(100))insert into #temp se...
分类:
数据库 时间:
2016-01-04 08:53:15
阅读次数:
261
之前不知道这个参数的作用,上网找了前辈的博客,在此收录到自己的博客,希望能帮到更多的朋友: test.htmlasy.jsfunction testAsync{ var temp; $.ajax({ async: false, type : "GET", url : 'tet.php', compl...
分类:
Web程序 时间:
2016-01-03 18:22:33
阅读次数:
138
$temp = str_pad(" ", 10000);for($i=0;$i<20;$i++){ echo $temp; echo $i; sleep(1);}
分类:
Web程序 时间:
2016-01-02 12:15:35
阅读次数:
151
排序集锦各种排序算法,总结一下,一直在遗忘......【冒泡排序】就是下面这个鬼啦:c实现代码(升序):#includevoid BubbleSort(int *array,int num){ int i,j,temp; for(j=0;jarray[i]) //倒序就把...
分类:
其他好文 时间:
2016-01-02 07:00:47
阅读次数:
178
#includeusing namespace std;void main(){ int i, j; int s[] = { 1, 2, 3 }; int *temp = new int[5]; temp = s; for (i = 0; i < 5; i++) { cout << temp[i.....
分类:
其他好文 时间:
2016-01-01 12:52:11
阅读次数:
232
在批处理最后增加了启动Delphi的命令。将批处理和Delphi放在同一目录即可。?12345678910111213141516171819202122@ECHOOFFREMEntertempdirectory.%TEMP:~0,2%CD%TEMP%REMTrydeletepreviouslycr...
1 冒泡排序void Bubble(int r[],int n){ int i,j,temp; for(i=0;ir[j+1]) { temp=r[j]; r[j]=r[j+1]; r[j+1]=temp; } }}改进算法void Bu...
分类:
编程语言 时间:
2015-12-30 22:07:01
阅读次数:
209
来来来,大家注意了,DataTable分组求和的简单方式'定义一个临时变量,用于判断某个分组是否已经求过和dim temp=""'求和的值dim sumValue'循环DataTablefor each dr in 网格部件1.DataTable.Rows '根据长度判当前这条数据所属的分组是否.....
分类:
其他好文 时间:
2015-12-29 14:34:24
阅读次数:
152
(一)缺省情况下swap动作可由标准程序库提供的swap算法完毕:namespace std { template void swap(T& a, T& b) { T temp(a); a = b; b = temp; } }这...
分类:
编程语言 时间:
2015-12-29 12:25:30
阅读次数:
200
使用方法./change 23456 10, 按最后指定的进制显示#include#include#includeint mystrlen(char *s){ int len=0; char *temp=s; while(*(temp)!='\0') { ++len; ++temp; } r...
分类:
其他好文 时间:
2015-12-27 10:44:51
阅读次数:
200