-- ============================================= -- Author: -- alter date: -- Description: -- ============================================= ALTER PROC... ...
分类:
数据库 时间:
2017-09-12 09:58:08
阅读次数:
245
///@ref geeksforgeeks ///@author Sycamore ///@date 9/11/2017 ///@link http://acm.hdu.edu.cn/showproblem.php?pid=2713 #include using namespace std; int... ...
分类:
其他好文 时间:
2017-09-11 22:47:41
阅读次数:
118
///@author Sycamore ///@date 9/11/2017 ///@link http://acm.hdu.edu.cn/showproblem.php?pid=2569 #include using namespace std; int num[40]; int main() {... ...
分类:
其他好文 时间:
2017-09-11 22:40:00
阅读次数:
213
///@author Sycamore///@date 9/11/2017///@link http://acm.hdu.edu.cn/showproblem.php?pid=2602#include using namespace std;int main(){ ios::sync_with_st... ...
分类:
其他好文 时间:
2017-09-11 21:26:57
阅读次数:
161
Mysql 中空字符串和NULL是不一样的。 Oracle中空字符串就是NULL。 update User set realname ='' where name = "ff"; -- 在Oracle中不起作用,只有NULL,没有空字符串。 update User set mobile = null ...
分类:
数据库 时间:
2017-09-11 19:57:47
阅读次数:
217
2124: 等差子序列 Description 给一个1到N的排列{Ai},询问是否存在1<=p1=3),使得Ap1,Ap2,Ap3,…ApLen是一个等差序列。 给一个1到N的排列{Ai},询问是否存在1<=p1=3),使得Ap1,Ap2,Ap3,…ApLen是一个等差序列。 Input 输入的第 ...
分类:
其他好文 时间:
2017-09-11 19:40:33
阅读次数:
201
两个Date类型的变量可以通过compareTo方法来比较。此方法的描述是这样的:如果参数 Date 等于此 Date,则返回值 0;如果此 Date 在 Date 参数之前,则返回小于 0 的值;如果此 Date 在 Date 参数之后,则返回大于 0 的值。 实际上比较的是自1970 年 1 月 ...
分类:
编程语言 时间:
2017-09-11 19:37:21
阅读次数:
185
#!/bin/bash
#
#User:Mobanche
#Date:2017-7-17
#Work:DeleteUser
#
#############################################
#DefineFunction#
#############################################
#
functionget_answer{
#
unsetANSWER
ASK_COUNT=0
#
while[-z"$ANSWER"]
do
ASK_COUNT=$[..
分类:
系统相关 时间:
2017-09-11 18:01:26
阅读次数:
201
#!/bin/bash #mo #20170911 #Update all oa code code=/root/code/$2/syberosoa path=/home/seim time=`date +%Y%m%d-%H%M` #Determine the results result() { ... ...
分类:
其他好文 时间:
2017-09-11 16:24:45
阅读次数:
204