码迷,mamicode.com
首页 >  
搜索关键字:bool    ( 16475个结果
hust 1463 - 第二届“华为杯”初赛题目H
题目描述有m个盒子,第i个盒子的长尾hi,宽为wi。如果两个盒子i,j满足hi#include#includeusing namespace std;const int maxn=20001;struct node{ int x,y;}box[maxn];int a[maxn];bool cm...
分类:其他好文   时间:2014-05-20 02:11:24    阅读次数:251
.net C# 对虚拟目录IIS的操作
一、查看虚拟目录是否存在private bool IsExitesVirtualDir(string virtualdirname){ bool exited =false; DirectoryEntry _entry = new DirectoryEntry("IIS://localhost/W3...
分类:Web程序   时间:2014-05-20 01:56:24    阅读次数:401
zzuli训练赛_05_13-K
题意:是输入N,2#include#includeusing namespace std;bool temp[100000];bool Try(int n)//判断素数 { if(n==2) return true; for(int i=2;i>n) { ...
分类:其他好文   时间:2014-05-19 11:19:42    阅读次数:168
C#网络编程之组播(JoinMulticastGroup)
bool canExecute = true; recvClient = new UdpClient(port); IPAddress ip = IPAddress.Parse("224.100.0.1"); try ...
分类:其他好文   时间:2014-05-19 11:08:40    阅读次数:267
从C到C++ (1)
从C到C++一、 bool类型 bool取值false和true,是0和1的区别; false可以代表0,但true有很多种,并非只有1。二、 const限定符常量在定义后就不能修改,所以定义时必须初始化。在一个文件全局作用域中定义非const变量,在另外的文件中做extern声明,就可以使用这.....
分类:编程语言   时间:2014-05-19 11:02:50    阅读次数:271
hust 1625 Chessboard
题目描述Given an N*N(N#include#include#includeusing namespace std;const int maxn=1001;int group[maxn][maxn];bool vis[maxn][maxn];int dx[4]={0,0,1,-1};int ...
分类:其他好文   时间:2014-05-19 09:06:30    阅读次数:379
C#播放音效(web/winform)
[System.Runtime.InteropServices.DllImport("winmm.DLL", EntryPoint = "PlaySound", SetLastError = true)] private static extern bool PlaySound(string sz....
分类:Windows程序   时间:2014-05-19 09:01:59    阅读次数:362
引用类型与值类型在编码上的区别
一、引入类型与值类型简介 值类型:直接存放于栈中,取的时候是直接取得值。值类型继承自System.ValueType。(自定义对象) 引用类型:存在于托管堆中,取的时候是从栈取该对象的地址,然后用这个地址去托管堆中取值。引用类型继承自System.Object。(int,bool,struct).....
分类:其他好文   时间:2014-05-17 17:58:48    阅读次数:181
LeetCode Scramble String
class Solution {public: bool isScramble(string s1, string s2) { int len = s1.length(); if (len == 1 && s1[0] == s2[0]) return true; ...
分类:其他好文   时间:2014-05-16 00:38:48    阅读次数:317
bool、int、float、指针变量与“零值”比较的if语句
if语句是C++/C语言中最简单、最常用的语句,然而很多程序员用隐含错误的方式写if语句。本节以“与零值比较”为例,展开讨论。这里是“零值”而不是“0”4.3.1布尔变量与零值比较【规则4-3-1】不可将布尔变量直接与TRUE、FALSE或者1、0进行比较。 根据布尔类型的语义,零值为“假”(记为....
分类:其他好文   时间:2014-05-15 22:39:14    阅读次数:318
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!