码迷,mamicode.com
首页 >  
搜索关键字:using    ( 53562个结果
URAL1018 Binary Apple Tree
很经典的树形DP(如果不会树形DP建议先看以下..我就是先看了别的题,,握手的什么的) 给一棵树,留下N条边(它若留下边父亲的边比留下),,问最后苹果最多多少个....... 建树我觉得很费劲,,,毕竟不太会........DP比较好理解吧,,,,,,,就是多想一想把,,,,,当作模板题记录下来~~~~ #include #include #include using...
分类:移动开发   时间:2015-06-29 15:00:39    阅读次数:139
C++关于二进制位操作小结
#include using namespace std; //二进制位逆序。 int Grial(int x) { int n = 32; int count = 0; while (n--) { count|= ((x&0x1) <> 1); }...
分类:编程语言   时间:2015-06-29 14:58:53    阅读次数:128
C#趣味程序---百鸡百钱
问题:公鸡一只5元,母鸡一只3元,小鸡三只1元,问100元可以买多少只鸡? using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int z, i=0; for ...
分类:Windows程序   时间:2015-06-29 14:56:42    阅读次数:145
C#趣味程序---爱因斯坦的台阶问题
问题:设有一阶梯,每步跨2阶,最后余1阶;每步跨3阶,最后余2阶;每步跨5阶,最后余4阶;每步跨6阶,最后余5阶;每步跨7阶,刚好到阶顶,问共有多少阶梯? using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { ...
分类:Windows程序   时间:2015-06-29 14:52:10    阅读次数:152
.net中c#获取本机IP地址实例代码
* 在使用前,一定要注意在头部加上引用:using System.Net;代码如下: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Net; 5 using System...
分类:Windows程序   时间:2015-06-29 14:49:34    阅读次数:131
抓取邮箱及资源
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:其他好文   时间:2015-06-29 14:36:24    阅读次数:90
winform文件修改器
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2015-06-29 14:34:16    阅读次数:163
wpf登陆及构造函数的传值及绑定传值
属性:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.ComponentModel;namespac...
分类:Windows程序   时间:2015-06-29 14:33:52    阅读次数:142
c++学习笔记4,调用派生类的顺序构造和析构函数(一个)
测试源代码://測试派生类的构造函数的调用顺序何时调用//Fedora20 gcc version=4.8.2#include using namespace std;class base{public: base() { coutA *a1; coutA *a2=new A; //仅仅有在n...
分类:编程语言   时间:2015-06-29 14:33:13    阅读次数:119
抓取网页源代码
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Net;us...
分类:Web程序   时间:2015-06-29 14:28:33    阅读次数:125
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!