Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 246913578, which happens to be another 9-digit number con...
分类:
其他好文 时间:
2015-03-02 19:09:06
阅读次数:
193
-》Linq 1.隐式类型 var a=1;var b="哈哈";在不知道类型的情况下使用,IL会根据赋值类判断类型,不会影响效率。因为IL产生的中间一样。var 必须赋值。2.匿名类型 var entity= new {title="我是匿名类型",fun="我很有用"};把一个对象的属性copy...
分类:
Web程序 时间:
2015-02-28 18:02:41
阅读次数:
180
Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 2469135...
分类:
其他好文 时间:
2015-02-27 20:12:12
阅读次数:
266
函数指针就是指向函数的指针,可以用与函数指针类型对应的函数名赋值,可以用来调用函数。全局函数指针常用于回调(函数)。声明函数指针类型应根据其所指向的函数去声明。例如声明函数int fun(int i,float k);的函数指针类型,只需仿照函数这样写typedef int (*Pfun)(int ...
分类:
其他好文 时间:
2015-02-27 11:48:07
阅读次数:
110
8.存储子程序(命名块)存储子程序下面三种:(1)存储过程:storeprocedure(SP)(2)函数:function(FUN)(3)包和包体:package/packagebody(PKG)存储过程:oracle的一种对象v_sqlcodeA在一个用户下有唯一的名字B存储在数据库中C可以接收传入参数并且有多个返回值D可以直接执行和在其..
分类:
数据库 时间:
2015-02-25 23:58:38
阅读次数:
408
9.程序包--PACKAGE9.1包的定义和编译包:一个PLSQL相关对象的逻辑分组和单个对象存储在数据库对象中的数据单元。相关的PLSQL对象包括:常量、变量、游标、异常、SP、FUN包由两部分组成:规范部分(包头、调用接口)+主体部分(包体、实现部分)(1)包头的创建:createorreplacepacka..
分类:
数据库 时间:
2015-02-25 23:58:20
阅读次数:
302
Notice that the number 123456789 is a 9-digit number consisting exactly the numbers from 1 to 9, with no duplication. Double it we will obtain 2469135...
分类:
其他好文 时间:
2015-02-21 16:33:11
阅读次数:
132
描述:把M个同样的苹果放在N个同样的盘子里,允许有的盘子空着不放,问共有多少种不同的分法?(用K表示)5,1,1和1,5,1 是同一种分法。输入第一行是测试数据的数目t(0 2 int fun(int m,int n) 3 { 4 if(m==0||n==1) 5 re...
分类:
移动开发 时间:
2015-02-20 23:07:55
阅读次数:
291
const一般的意义是 ,恒定不变,修饰的对象不能改变,或是为了保护数据,提高了程序额健壮性。分类如下:
常变量: const 类型说明符 变量名
常引用: const 类型说明符 &引用名
常对象: 类名 const 对象名
常成员函数: 类名::fun(形参) const
常数组: 类型说明符 const 数组名[大小]
常指针: const 类型说明符* 指针名 ,类型说明符* ...
分类:
其他好文 时间:
2015-02-18 17:40:48
阅读次数:
210
12985. Sum Fun
限制条件
时间限制: 1 秒, 内存限制: 256 兆
题目描述
Given a list of 3 positive integers, it may or may not be true that one of those numbers is the sum of the other two. Given several such sets o...
分类:
其他好文 时间:
2015-02-17 10:24:51
阅读次数:
172