这题思路:一开始有n盏灯,且全部为关闭状态,都记为 0 就是 The initial condition : 0 0 0 0 0 …然后之后进行i操作就是对这些灯以是否能被i整除,进行改变状态,如将 0 改为 1 或 将 1 改为 0正如提醒里的After the first operation :...
分类:
其他好文 时间:
2014-07-19 21:00:51
阅读次数:
198
python2.7 python3.2差别还是蛮大的,就想着学习较新的 升级后
结果出现 输入法不显示 update-manager 和 add-apt-repository不能用,android的模拟器也打不开。前面三几个问题直接把python ls到原来的2.7版本就可以直接解决,但是最后的一个问题android模拟器无法打开 折腾了好久才解决,写此以记录
问题如下:fglrxinfo
X Error of failed request: BadRequest (invalid r...
分类:
移动开发 时间:
2014-07-18 23:09:55
阅读次数:
372
原因:在对远程表增删改操作的时候,调用了本地函数。 比如:insert into trans_load_rate@DC values(rate_s(1)); trans_load_rate是DC库的表,rate_s函数是本地库的函数,执行上面这条sql的时候,就会报ora-02069解决方法: .....
分类:
其他好文 时间:
2014-07-18 00:17:41
阅读次数:
243
xilinx ise下载出现以下问题PROGRESS_START - Starting Operation.INFO:iMPACT:583 - '1': The idcode read from the device does not match the idcode in the bsdl Fil...
分类:
其他好文 时间:
2014-07-17 13:01:31
阅读次数:
955
问题:编译Socket时候出现socket bind error:Socket operation on non-socket时间:2014-7-14解决:注意“==”和“=”的优先级,前者是大于后者的,故而在处理一些表达式的时候,注意加括号注意:注意下面标注闪光字体的地方#include #inc...
分类:
其他好文 时间:
2014-07-16 15:21:29
阅读次数:
190
需求:数据仓库中所有表的定义结构保存到新的文件中,保存后类似下面数据,重复的数据只保留7月份即可****************ods_log_info*****************lid string uid string mb_uid string operation string modu...
分类:
编程语言 时间:
2014-07-14 14:29:01
阅读次数:
285
2014-07-12 BaoXinjian一、摘要R12通过MOAC设定限制职责的Operation Unit的访问权限在总账中,需要通过设定数据访问权限设定限定职责的Ledger的访问权限(一). 设定Operation Unit的访问权限的具体步骤1. 建立安全性配置文件(Security Pr...
分类:
其他好文 时间:
2014-07-13 22:57:12
阅读次数:
398
以面向对象的思想和简单工厂模式,写一个C++计算器程序,代码如下:
#include
using namespace std;
class Operation {
public:
Operation(double left, double right)
{
lhs = left;
rhs = right;
}
const doub...
分类:
其他好文 时间:
2014-07-13 18:01:20
阅读次数:
354
svn提交遇到恶心的问题,可能是因为上次cleanup中断后,进入死循环了。
错误如下:
解决方法:清空svn的队列
1.下载sqlite3.exe
2.找到你项目的.svn文件,查看是否存在wc.db
3.将sqlite3.exe放到.svn的同级目录
4.启动cmd执行sqlite3 .svn/wc.db "select * from...
分类:
其他好文 时间:
2014-07-12 19:32:57
阅读次数:
553
当您试图从单独的线程更新一个win form时,您将得到如下错误信息:"Cross-thread operation not valid: Control 'progressBar1' accessed from a thread other than the thread it was creat...
分类:
数据库 时间:
2014-07-12 14:04:15
阅读次数:
337