码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
C#闰年测试程序白盒测试 20150426
使用visual studio对C#程序进行简单的单元测试。测试步骤 1). 新建闰年测试项目,编写代码 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5.....
分类:Windows程序   时间:2015-04-26 16:35:41    阅读次数:221
pip不灵解决办法
pip?install?DjangoCaptcha 奇葩错误: Fatal?error?in?launcher:?Unable?to?create?process?using?‘""D:\Program?Files?(x86 )\Python\python.exe""?"D:\Program?Files?(x86)\Python\Scripts\pi...
分类:其他好文   时间:2015-04-26 15:20:20    阅读次数:101
EF 数据延迟加载
EF数据延迟加载 using System; using System.Collections.Generic; using System.Data.Entity.Infrastructure; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcTest.Controllers { publi...
分类:其他好文   时间:2015-04-26 15:18:22    阅读次数:127
HDU 1176 免费馅饼
递推方程应该很好想,就是初值处理起来有点麻烦。在草稿纸上模拟一下就可以了 dp[i][j]表示i时刻处于j位置能接到的最大值 #include #include #include using namespace std; int a[100005][15],dp[100005][15]; void init(){ memset(a,0,sizeof(a)); memset(dp,0,siz...
分类:其他好文   时间:2015-04-26 15:17:15    阅读次数:161
XmlSerializer序列化小结
XmlSerializer在命名空间using System.Xml.Serialization下。序列化和反序列化的代码:using System.IO;using System.Xml;using System.Xml.Serialization;namespace ConsoleApplic....
分类:其他好文   时间:2015-04-26 15:11:00    阅读次数:212
openvc中读取图像访问图像中像元的的方法
一、读取图像1、利用Mat数据结构读取和显示图片#include"cv.h"#include "highgui.h"#includeusing namespace std;using namespace cv;int _tmain(int argc, _TCHAR* argv[]){ Mat i.....
分类:其他好文   时间:2015-04-26 15:06:59    阅读次数:207
Team Formation
1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #include 9 #include 10 using namespace std;11 const int MM=100...
分类:其他好文   时间:2015-04-26 15:06:30    阅读次数:143
【原】yield的最基本用法
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Itcast.Mall.ConsoleApp{ class Program { stati...
分类:其他好文   时间:2015-04-26 15:05:06    阅读次数:108
HDU_1042
发个体母链接: http://acm.hdu.edu.cn/showproblem.php?pid=1042 1 #include 2 #include 3 #include 4 using namespace std; 5 #define MAX 10000 6 #define BASE 1...
分类:其他好文   时间:2015-04-26 15:03:23    阅读次数:132
UVA 11134 Fabled Rooks 贪心
题目链接:UVA - 11134题意描述:在一个n*n(1 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include 8 #define inf 0x7fffffff 9 using namespace std;10 cons...
分类:其他好文   时间:2015-04-26 13:41:11    阅读次数:130
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!