解题思路:int型的注意,+= (a * b) % 9973时小心溢出了#include
#include
using namespace std;
#define maxn 10
#define mod 9973
typedef long long ll;
struct Matrix{
ll mat[maxn][maxn];
}a, b, tmp;
int...
分类:
其他好文 时间:
2015-05-19 10:46:29
阅读次数:
164
OpenCV Error: The function/feature is not implemented (OpenCV was built without SURF support) in cvExtractSURF, file /tmp/buildd/ros-hydro-opencv2-2.4.9-2precise-20141231-1914/modules/legacy/src/featu...
分类:
其他好文 时间:
2015-05-19 10:34:06
阅读次数:
1073
#!/bin/bash
Local_Dir=‘/tmp/test_huadan‘
Ip=‘192.168.0.221‘
PassWord=‘Lhm0125‘
Des_Dir=‘/tmp/test_huadan‘
List=$(find$Local_Dir-cmin-60)
foriin$List
do
#echo$i
if[-f$i]
then
expect<<EOF#利用expect命令,捕捉Password关键字,然后传入密码,此案例还..
分类:
系统相关 时间:
2015-05-18 21:04:55
阅读次数:
485
问题描述:
写了一个exp的脚本,放到了oracle的crontab中,但一直不能执行。
问题原因
crond默认不会加载该用户的.profile和.bashrc文件,它的执行环境只能有一些最基本的环境变量,因此exp的命令因找不到而不执行。
验证过程
写了一个脚本,赋予777权限
[root@DBBANK ~]# cat /tmp/wjf/env
env |wall
分别把这个脚本加...
分类:
其他好文 时间:
2015-05-18 10:58:11
阅读次数:
161
#include #include #include void add(char *a, char *b,char *sum)//字符串a要比字符串b长,或相等{ int len_a = strlen(a); int len_b = strlen(b); char tmp[len_...
分类:
其他好文 时间:
2015-05-17 18:15:11
阅读次数:
97
//Codeclass CMainWindow : public CFrameWnd{protected: int m_nCellWidth; // Cell width in pixels int m_nCellHeight; // Cell height in pixels int m_nRib...
分类:
编程语言 时间:
2015-05-17 00:40:56
阅读次数:
165
1.把ida目录下android_server传到设备的/data/local/tmp/cmd执行adb shell进入模拟器命令行1 su 2 cd /data/local/tmp/3 chmod 755 android_server ——<增加执行权限执行./android_server服务端给...
分类:
移动开发 时间:
2015-05-16 20:26:03
阅读次数:
225
一、php文件上传需要确认的配置选项 在php.ini文件中看下 ---> file_uploads = On upload功能是否打开 ---> upload_tmp_dir = "c:/wamp/tmp" 设置上传缓存的文件夹 ...
分类:
Web程序 时间:
2015-05-16 20:05:31
阅读次数:
114
学习鸟哥的LINUX私房菜vi使用在LINUX上都预装了VI编译器,可以很方便的用来查看和编辑文档。学习vi学习VIM 的基础,vi有很多的命令,需要反复练习记忆使用。下面是学到的命令以及基本的操作,vi对大小写敏感,操作时应注意。>>mkdir tmp/man.config>>vi tmp/man...
分类:
系统相关 时间:
2015-05-16 20:02:36
阅读次数:
136
#include #include #include #include #define clr(x,y) memset(x, y, sizeof x)#include using namespace std;const int maxn=6e2+6;const int maxm=maxn*maxn*...
分类:
其他好文 时间:
2015-05-16 18:20:41
阅读次数:
134