码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
HDU 1033 Edge
题目不难,逆时针的时候注意,wa了好多次wa的代码,错误 1 #include 2 #include 3 using namespace std; 4 struct Point{ 5 int x;int y; 6 }p[3]; 7 int main() 8 { 9 char c[...
分类:其他好文   时间:2016-01-27 14:24:49    阅读次数:142
HDU 1070 Milk
选择最便宜的牛奶品牌;牛奶容量最多能喝5天,1天喝200ML,总共为1000ML。牛奶能喝的天数是整数=(int)容量/200。忽略容量小于200ML的牛奶。单价相同的情况下选择容量大的。附代码 1 #include 2 #include 3 #include 4 using namespac...
分类:其他好文   时间:2016-01-27 14:19:17    阅读次数:114
Delphi7程序调用C#写的DLL解决办法(转)
近来,因工作需要,必须解决Delphi7写的主程序调用C#写的dll的问题。在网上一番搜索,又经过种种试验,最终证明有以下两种方法可行: 编写C#dll的方法都一样,首先在vs2005中创建一个“类库”项目TestDll,using System.Runtime.InteropServices;na...
分类:Windows程序   时间:2016-01-27 12:29:27    阅读次数:239
MVC 分页
后台代码:using Webdiyer.WebControls.Mvc; 1 public ActionResult Index(int id = 1) 2 { 3 int pageIndex = id; 4 int count; 5 ...
分类:Web程序   时间:2016-01-27 12:18:55    阅读次数:165
Lock
Lock理解using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace Lock{ class Account { ...
分类:其他好文   时间:2016-01-27 10:48:12    阅读次数:157
当从网页获取不到元素时,
1,可以分段解析2,using Ivony.Html.Parser;using Ivony.Html;using Skay.WebBot;using System;using System.Collections.Generic;using System.Linq;using System.Text...
分类:Web程序   时间:2016-01-27 10:44:35    阅读次数:165
stl入门--reverse函数
#include #include using namespace std; int main() { char a[]="0123456789"; int len=strlen(a); reverse(&a[0],&a[6]); //a[6]没参加reverse for(int ...
分类:其他好文   时间:2016-01-27 07:04:49    阅读次数:164
无向图的深度遍历
#include #include using namespace std; int e[100][100]; //无向图图采用邻接矩阵表示,一般的图采用数组,稀疏图可采用vector动态表示节约资源 int book[100]; //采用book数组记录节点是否已经访问过 int n,m; /.....
分类:其他好文   时间:2016-01-27 07:03:19    阅读次数:186
aabb问题
输出所有aabb型的完全平方数这个问题主要是提供一个判断完全平方的思路,就是用floor函数#include #include #include #include #include #include #include #include using namespace std;#define mem(...
分类:其他好文   时间:2016-01-27 00:55:10    阅读次数:204
上帝造题五分钟
1 #include 2 #include 3 #include 4 using namespace std; 5 int main() 6 { 7 int str[2000],tmp[2000]; 8 int n,q,l,r,j; 9 while(~scanf("%d%d...
分类:其他好文   时间:2016-01-27 00:48:01    阅读次数:179
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!