#pragma warning(disable:4996)
#include <cstdio>
#include <tchar.h>
#include <Windows.h>
#include <vector>
using namespace std;
/*
submit time : 4
1.Runtime Error
Last executed input: [1], 2...
分类:
其他好文 时间:
2014-07-22 09:03:04
阅读次数:
285
1,安装virtualbox 2, 安装virtualbox Extension Pack 3, Virtualbox虚拟机配置面板中打开USB设备选项,分别勾选上“启动USB控制器”“启用usb2.0控制器”选项 4,添加用户到vboxusers用户组 ????cat /etc/...
分类:
其他好文 时间:
2014-07-22 08:16:36
阅读次数:
186
首先要导入对命名空间usingSystem.Runtime.InteropServices;的引用[StructLayout(LayoutKind.Sequential, Pack = 1)]internalstructTokPriv1Luid{publicintCount;publiclongLu...
分类:
其他好文 时间:
2014-07-22 00:22:36
阅读次数:
215
#pragma warning(disable:4996)
#include <cstdio>
#include <tchar.h>
#include <Windows.h>
/*
submit time : 3
1.Time Limit Exceeded
Last executed input: []
2.Cant‘s remember
request :
G...
分类:
移动开发 时间:
2014-07-21 23:30:21
阅读次数:
443
#pragma warning(disable:4996)
#include <Windows.h>
#include <tchar.h>
#include <cstdio>
#include <vector>
using namespace std;
/*
submit time : 3
1. Runtime Error
Last executed input: [5,3]...
分类:
其他好文 时间:
2014-07-21 13:26:03
阅读次数:
250
在上一篇文章中,我们已经知道了如何通过WiFi将iOS设备和EV3连接起来,那么下一步的工作就是从iOS设备中发送命令给EV3并接收EV3返回的数据。这也是本篇文章将告诉大家的。首先要明确的一点是本开源代码库只封装了EV3直接命令(Direct Command),也就是无需在EV3上开发任何程序就能使用这些命令对EV3进行控制。目前库中的API包含以下这些:#pragma mark - EV3 D...
分类:
移动开发 时间:
2014-07-20 15:28:42
阅读次数:
370
时间:Today地点:420实验室事件:在重新安装VS2010 的过程中,总是在.NET Framework 4 Multi-Targeting Pack 这个地方失败。错误代码如下:[07/19/14,13:41:48] .NET Framework 4 Multi-Targeting Pack:...
分类:
其他好文 时间:
2014-07-19 18:17:04
阅读次数:
265
// 智能指针// 作用:// 1. 管理堆内存// 使用约束:// 1. 不能将智能指针对象赋值给智能指针对象// 2. 不能将栈对象取地址后赋值给智能指针// 3. 每一个对应的堆对象地址只能赋值给一个智能指针对象#pragma oncet...
分类:
其他好文 时间:
2014-07-19 17:05:40
阅读次数:
235
js#pragma strict//用于绑定参照物对象 var target : Transform; //缩放系数 var distance = 10.0; //左右滑动移动速度 var xSpeed = 250.0; var ySpeed = 120.0; //缩放限...
分类:
移动开发 时间:
2014-07-19 09:13:27
阅读次数:
285
function trimUTF8BOM($file){ $content = file_get_contents($file); if(substr($content, 0, 3) == pack('CCC', 239, 187, 191)) { $content = s...
分类:
Web程序 时间:
2014-07-19 00:32:06
阅读次数:
266