码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
CodeForces615A-Bulbs-
水题 1 #include <cstdio> 2 #include <algorithm> 3 4 using namespace std; 5 6 int N,M,save[1000]; 7 8 int main() 9 { 10 scanf("%d%d",&N,&M); 11 for(int i
分类:其他好文   时间:2016-02-22 14:45:58    阅读次数:132
简单的ADO.NET连接数据小样例
ADO.NET连接数据库的样例如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.
分类:Web程序   时间:2016-02-22 12:02:06    阅读次数:131
C# 定时器运用
在晚上12点执行任务 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Linq;usin
分类:Windows程序   时间:2016-02-22 11:46:11    阅读次数:206
Windows Phone 7 下 Socket(TCP) 与 PC 通讯
Windows Phone 7 下 Socket(TCP) 与 PC 通讯,使用 WP7 模拟器与 PC 上的 Simple TCP 服务进行通讯。 TCP 客户端主要实现 Socket 连接的建立、数据的发送与接收和关闭已经建立的 Socket。 1 using System; 2 using S
分类:Windows程序   时间:2016-02-22 10:16:04    阅读次数:336
C#中EXCEL/WORD轉PDF的方法
參考別人寫的:http://www.cnblogs.com/amylis_chen/p/3754814.html using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;u
分类:Windows程序   时间:2016-02-22 10:10:40    阅读次数:287
NPOI导出EXCEL数据量大,分多个sheet显示数据
//NPOIHelper 类关键代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.IO; using NPO
分类:其他好文   时间:2016-02-22 09:00:05    阅读次数:758
[Immutable.js] Using fromJS() to Convert Plain JavaScript Objects into Immutable Data
Immutable.js offers the fromJS() method to build immutable structures from objects and array. Objects are converted into maps. Arrays are converted in
分类:编程语言   时间:2016-02-22 00:11:20    阅读次数:282
简单插入排序(C++版)
#include <iostream> using namespace std; /** \ Insert Sort * * Key: * * reserve: tm = a[i] * * position: int j = i-1 * * move : while * */ template <t
分类:编程语言   时间:2016-02-21 22:35:56    阅读次数:280
C++中搜索、截取字符串
演示样例中有具体凝视,直接上代码: #include <iostream> #include <string> using std::cout; using std::endl; using std::string; int main(void){ string str1="hi,test,hell
分类:编程语言   时间:2016-02-21 21:23:02    阅读次数:202
C - Big Number
Description In many applications very large integers numbers are required. Some of these applications are using keys for secure transmission of data,
分类:其他好文   时间:2016-02-21 21:20:36    阅读次数:280
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!