证明:由连续函数的最值定理知,存在$\xi \in \left[ {a,b}
\right]$,使得$$f\left( \xi \right){\rm{ = }}\mathop {max}\limits_{x \in \left[
{a,b} \right]} f\left( x \right){\...
分类:
其他好文 时间:
2014-05-12 12:35:20
阅读次数:
491
OpenWindows -> Preferences.
2.SelectjrefromInstalled JREsthen hitEdit botton on the right. 3.browse the
installed jre path for the jre home. 4....
分类:
编程语言 时间:
2014-05-12 12:29:09
阅读次数:
390
ASP Session 对象 Previous Page Next Page Session
对象用于存储用户的信息。存储于 session 对象中的 变量握有单一用户的信息,并且对于一个应用程序中的所有页面都是可用的。 Session 对象
当您操作某个应用程序时,您打开它,做些改变,...
分类:
Web程序 时间:
2014-05-10 22:15:54
阅读次数:
374
证明:令$\alpha = {\inf }\limits_{n \ge 1} \left\{
{\frac{{\ln {a_n}}}{n}} \right\}$,由下极限的定义知\[\alpha \le \mathop {\underline {\lim
} }\limits_{n \to \inf...
分类:
其他好文 时间:
2014-05-10 18:00:22
阅读次数:
317
坑爹地多次过,全都是写程序时不注意的小问题,书写习惯还需要进一步改善。遇到的bug有:忘记return语句;定义ListNode
runner = head.next,却将判断head==null的情况放在这句之后;
忘记了新的head将不会是原来的那个head,而是head.next;所以以后遇到...
分类:
其他好文 时间:
2014-05-10 06:59:37
阅读次数:
320
用asp打开光驱!
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdr...
分类:
Web程序 时间:
2014-05-10 04:52:15
阅读次数:
309
个人整理比较常用的几个快捷键:
1. Ctrl+Q:回到最后一次编辑的地方
2. Ctrl+.及Ctrl+1:下一个错误及快速修改
3. Ctrl+O:列出当前类中的所有方法及属性
4. Ctrl+E:快速转换编辑器
5. Alt+Left:向后到浏览过的地方
6. Alt+Right:向前到浏览过的地方
7. Ctrl+Shift+R:全局搜索方法或者类
8. Ctrl+Shif...
分类:
系统相关 时间:
2014-05-10 04:34:10
阅读次数:
338
判断文章中文字符数量
dim WINNT_CHINESE
WINNT_CHINESE = (len("论坛")=2)
function strLength(str)
ON ERROR RESUME NEXT
if WINNT_CHINESE then
dim l,t,c
dim i
l=len(str)
t=l
for i=1 to l
c=asc(mid(...
分类:
其他好文 时间:
2014-05-10 04:30:47
阅读次数:
266
在下例中,演示了链表的各种操作
#include
using namespace std;
typedef struct Node
{
int data; //数据域
struct Node * next; //指针域
}NODE, *PNODE; //NODE相当于struct Node, PNODE相当于struct Node *
PNODE CreateList()...
分类:
其他好文 时间:
2014-05-10 04:29:49
阅读次数:
263
'EXCELa.VBS '直接将查询数据结果生成 EXCEL 表,稍做修改后即可
'改成ASP文件放在服务器上面向客户
option Explicit
dim conn,strConnString
Set conn = WScript.CreateObject("ADODB.Connection")
on error resume next
strConnString ="Provid...
分类:
其他好文 时间:
2014-05-10 03:43:27
阅读次数:
375