码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
WCF Windows Service Using TopShelf and ServiceModelEx z
http://lourenco.co.za/blog/2013/08/wcf-windows-service-using-topshelf-and-servicemodelex/There are two excellent .NET libraries that help us to build ...
分类:Windows程序   时间:2015-10-06 18:01:40    阅读次数:652
计算器
using System.Windows.Forms;namespace 朱华建{ public partial class Form1 : Form { public static int Count = 0; public static int right...
分类:其他好文   时间:2015-10-06 16:54:31    阅读次数:176
【002】有符号数据传递给无符号变量
【例2】 将有符号数据传送给无符号变量。#include using namespace std;int main( ){unsigned short a;short b=-1;a=b;cout<<"b="<<b<<endl;cout<<"a="<<a<<endl;return 0;}【输出结果】b...
分类:其他好文   时间:2015-10-06 16:52:06    阅读次数:157
第二次博客作业
需求分析:这个软件在市场上面对的人群是小学1年级至3年级的小朋友,软件的随机测试可以锻炼他们的反应能力。设计思路:构想一个大的框架,然后添加约束条件,满足这些需求,就算完成了!代码的实现:using System; using System.Collections.Generic; using Sy...
分类:其他好文   时间:2015-10-06 16:45:36    阅读次数:129
C++ "hello world‘实例
1. hello world实例#include main(){ std::coutusing namespace std;int main(){cout而不是 ?为什么要加std:: ?std是一个类(输入输出标准),它包括了cin成员和cout成员,using name space std ;....
分类:编程语言   时间:2015-10-06 16:38:03    阅读次数:191
kmp模版题 hdu2087
1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 int m,n; 8 char s[1010]; 9 char t[1010];10 int next1[1010];11 12 void getnext()13 ...
分类:其他好文   时间:2015-10-06 14:04:15    阅读次数:275
【译】使用requestIdleCallback
英文原文:https://developers.google.com/web/updates/2015/08/27/using-requestidlecallback(备好梯子)如有不当之处,还请指正。概览:requestIdleCallback是一个当浏览器处于闲置状态时,调度工作的新的性能相关的...
分类:其他好文   时间:2015-10-06 14:03:25    阅读次数:207
kmp模版题 hdu1686
1 #include 2 #include 3 #include 4 5 using namespace std; 6 7 char s[1000010]; 8 char t[10010]; 9 int next1[10010];10 int m,n;11 12 void getnext...
分类:其他好文   时间:2015-10-06 14:01:36    阅读次数:130
HDU1016 Prime Ring Problem
解题思路:回溯,按顺序搜,自然回搜出对应的字典序从小到大。 1 #include 2 #include 3 #include 4 using namespace std; 5 const int maxn = 24; 6 int vis[maxn], path[maxn], n, kase = 1;...
分类:其他好文   时间:2015-10-06 12:54:40    阅读次数:155
HDUOJ 1033 Edge
看到百分之50多的AC率,但这道题看得我一头雾水。。。看了半天结果就是一道大水题。模拟就行了。 1 #include 2 #include 3 #include 4 using namespace std; 5 6 int main() 7 { 8 char command[201]...
分类:其他好文   时间:2015-10-06 12:52:54    阅读次数:175
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!