#include #include #include using namespace std;void multiple ( int x[2][2], int y[2][2] ){ int temp[2][2] temp[0][0] = (;x[0][0]*y[0][0]+x[0][1]*y[1][...
分类:
其他好文 时间:
2015-01-29 12:03:06
阅读次数:
130
1 mastermaster数据库是SqlServer的核心,如果该数据库被损坏,SqlServer将无法正常工作。master数据库记录了所有SqlServer系统级的信息,包括:登录账户信息、系统配置信息、服务器配置信息、数据库文件信息已经SqlServer初始化信息。2 tempdb temp...
分类:
数据库 时间:
2015-01-28 14:20:28
阅读次数:
262
1.定义单入口文件(index.php)在单入口index.php中不定义这两项时,会生成编译缓存文件~runtime.phpdefine('RUNTIME_PATH','./App/Temp/'); //定义编译目录define('APP_DEBUG',TRUE); //...
分类:
Web程序 时间:
2015-01-27 21:39:52
阅读次数:
158
#! /bin/sh # 获得完整apk路径APK_PATH=$1 # 创建一个临时目录,来解压这个apk文件rm -rf apk_tempmkdir apk_tempcp $APK_PATH apk_temp/cd apk_temp # 获得apk的名称APK_NAME="$(basenam...
分类:
编程语言 时间:
2015-01-27 13:07:40
阅读次数:
179
一。java中public void test(Object ... args){ for(Object temp:args){ System.out.print(temp); }}二。js中用arguments对象function test(){ for(var i=0;i<=...
分类:
编程语言 时间:
2015-01-27 12:47:36
阅读次数:
196
#include
#include
typedef unsigned char UINT8;
typedef unsigned int UINT16;
UINT8 num = 0, temp = 0, key = 16, t0 = 0, t1 = 0, shu = 0;
/* 数码管编码 */
UINT8 code table[]=
{
0x3f,0x06,0x5b,0x4f,
0x...
分类:
其他好文 时间:
2015-01-26 13:40:44
阅读次数:
123
1、错误描述
Using CATALINA_BASE: "D:\NetBeans\apache-tomcat-8.0.12"
Using CATALINA_HOME: "D:\NetBeans\apache-tomcat-8.0.12"
Using CATALINA_TMPDIR: "D:\NetBeans\apache-tomcat-8.0.12\temp"
Using JRE_HOM...
分类:
Web程序 时间:
2015-01-25 19:39:24
阅读次数:
800
function exchangeVar() { var a = 1, b = 10 var temp = a; a = b; b = temp; console.log(a + '\t' + b); // 10 1不使用第三个变量的方法function exc...
分类:
编程语言 时间:
2015-01-25 18:08:41
阅读次数:
195
思路:依次比较数组中的第一个元素和第二个元素,如果第一个元素大于第二个元素,则交换位置,所以需要两个函数:交换位置函数和比较函数比较轮数为数组长度var arr=[2,58,49,26,34];function change(f,s){ var temp=arr[f]; arr[f]=arr[s];...
分类:
编程语言 时间:
2015-01-25 15:04:26
阅读次数:
143
#include#include#include#includeusing namespace std;char mat[20][20];int ans[15];int n;bool ok(int x,int y){ int tx,ty; int ans[15]; int temp...
分类:
其他好文 时间:
2015-01-25 06:27:34
阅读次数:
106