声明 sub sub?subA(arg1)
????‘//Code....
end?sub
sub?subB(arg1,?arg2)
????‘//Code....
end?sub 声明 function function?funcA(arg1)
????‘//Code....
????A?=?arg1
end?function
...
分类:
其他好文 时间:
2015-03-03 00:02:29
阅读次数:
351
HTTP头部解释1.Accept:告诉WEB服务器自己接受什么介质类型,*/*表示任何类型,type/*表示该类型下的所有子类型,type/sub-type。2.Accept-Charset:浏览器申明自己接收的字符集Accept-Encoding:浏览器申明自己接收的编码方法,通常指定压缩方法,是...
分类:
Web程序 时间:
2015-03-02 12:36:38
阅读次数:
199
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5179
beautiful number
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 198 Accepted Sub...
分类:
其他好文 时间:
2015-03-02 11:22:00
阅读次数:
159
Sub Md()'' Macro1 Macro' 宏由 BX 录制,时间: 2012-6-8' 宏中的列数可以输入 A - IV 也可以输入 1-256'Dim i%, j%, i1%, j1%, i2%, j2%myi = UCase(InputBox("第一列"))myj = UCase(Inp...
分类:
编程语言 时间:
2015-03-02 10:52:49
阅读次数:
200
Given a string, you are supposed to output the length of the longest symmetric sub-string. For example, given "Is PAT&TAP symmetric?", the longest sym...
分类:
其他好文 时间:
2015-03-02 09:29:08
阅读次数:
123
题意:①首先定义S为一个有序序列,S={ A1 , A2 , A3 , ... , An },n为元素个数 ; ②然后定义Sub为S中取出的一个子序列,Sub={ Ai1 , Ai2 , Ai3 , ... , Aim },m为元素个数 ; ③其中Sub满足 Ai1 d (1 >1; b...
分类:
其他好文 时间:
2015-02-28 20:04:50
阅读次数:
144
#-*- coding:gb2312 -*-import smtplibfrom email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipartdef sendmail(to, sub, content): ...
分类:
编程语言 时间:
2015-02-28 18:20:05
阅读次数:
192
用C语言实现python的扩展模块 示例1: 1 Example.c int add(int a,int b) { return a+b; } int sub(int a,int b) { return a -b; } int mul(int a,int b) { return a*b; } int div1(int a,int b) { if(0 == b) {...
分类:
编程语言 时间:
2015-02-27 18:58:22
阅读次数:
187
之前研究了div的垂直和水平布局,接下来研究下Flex中Group(Canvas)的类似效果在div中如何实现。关键字:position吸取了之前float:left设置在父容器中没有效果的教训,这个position:absolute果断先设置在子元素上 sub div 0 ...
分类:
Web程序 时间:
2015-02-27 18:20:49
阅读次数:
161
//sub.h#ifndef _SUB_H#define _SUB_H_declspec(dllexport) void sub(int a,int b);#endif//sub.cpp#include "sub.h"#include void sub(int a,int b){ std::cout...
分类:
其他好文 时间:
2015-02-26 21:37:40
阅读次数:
197