1 /* 2 PROBLEM:CF 485C 3 AUTHER:Nicole 4 MEMO:位运算 二进制 5 */ 6 #include 7 int main() 8 { 9 int n;10 scanf("%d",&n);11 for (int ...
分类:
其他好文 时间:
2014-11-09 12:29:05
阅读次数:
167
1 /* 2 PROBLEM:CF 483A 3 AUTHER:Nicole 4 MEMO:数学 5 */ 6 #include 7 using namespace std; 8 int main() 9 {10 long long l,r;11 scanf...
分类:
其他好文 时间:
2014-11-09 12:27:29
阅读次数:
170
Exception in thread "main" org.apache.commons.httpclient.ProtocolException: Unable to parse header: share memory not exist, need create new share memo...
分类:
Web程序 时间:
2014-11-08 18:08:59
阅读次数:
457
1、在服务器端主窗体上显示服务器的执行情况,主窗体默认单元文件是Unit1.pas 2、一个TMEMO到窗体上, 3、在数据模块单元,ServerMethod1上放一个SQLMonitonr控件,ServerMethod1.pas的uses 里加上unit1,因为要访问MEMO。 日志可以输出到文本...
分类:
其他好文 时间:
2014-11-02 13:49:40
阅读次数:
842
最近在做项目 用VFP9.0这个比较古老的数据库,有个问题一直纠结我很久。就是memo这个备注字段,你在insert 的时候只要插入的字符串数据超过64K的时候就会出错。 之后我一直在找原因原来是备注字段限制64K 但是问题是我的数据大于64k 怎么搞 例: insert into 表明('备...
分类:
其他好文 时间:
2014-10-22 10:03:23
阅读次数:
493
题意 求n=0~9时的sigma(1/n!)分析 因为刚学c++ 所以对浮点操作还是很不熟练,正好来了这么一道题Accepted Code 1 /* 2 PROBLEM:hdu 1012 3 AUTHER:Nicole Lam 4 MEMO:水题 5 */ 6 #incl...
分类:
其他好文 时间:
2014-10-20 23:11:29
阅读次数:
218
在开发某些软件的时候,为了保护程序自身,就需要用到隐藏程序进程。以下通过实例来讲解隐藏程序进程的方法: 1、创建一个新的项目 Project1 选择File,New Application。在表单Form1上放一Memo组件,一个OK按钮组件,改变OK按钮组件的Cation属性为 ...
每天一个JavaScript实例-使用缓存计算(memoization)来提高应用程序性能
window.onload = function(){
var fibonacci = function(){
var memo = [0,1];
var fib = function(n){
var result = memo[n];
if(typeof resu...
分类:
编程语言 时间:
2014-10-16 12:06:52
阅读次数:
182
An improved memory model and implementation is disclosed. The memory model includes a Total Store Ordering (TSO) and Partial Store Ordering (PSO) memo...
分类:
移动开发 时间:
2014-10-14 02:05:27
阅读次数:
442
题意 输入a,b,输出a+b;分析 注意多caseAccepted Code 1 /* 2 PROBLEM:hdu1000 3 AUTHER:NicoleLam 4 MEMO:水题 5 */ 6 7 #include 8 int main() 9 {10 int...
分类:
其他好文 时间:
2014-10-11 10:20:45
阅读次数:
150