#include<bits/stdc++.h> #define REP(i,a,b) for(int i=a;i<=b;i++) #define MS0(a) memset(a,0,sizeof(a)) using namespace std; typedef long long ll; const
分类:
其他好文 时间:
2016-02-10 21:05:05
阅读次数:
195
mkdir-p/usr/local/apache22./confingure--prefix=/usr/local/apache22makemakeinstallroot@fb10:/var/tmp/httpd-2.2.31#/usr/local/apache22/bin/apachectl-kstarthttpd:Couldnotreliably(可靠的)determine(决定)theserver‘sfully(充分)qualified(合格)domainname,using..
分类:
Web程序 时间:
2016-02-10 18:48:28
阅读次数:
448
这道题是最小表示法的一个应用, 代码如下: /* ID: m1500293 LANG: C++ PROG: hidden */ #include <cstdio> #include <algorithm> #include <cstring> using namespace std; char s[
分类:
其他好文 时间:
2016-02-10 17:37:30
阅读次数:
221
#include <iostream>using namespace std; class F{ int n; int d;public: F(int n = 0,int d = 1); void print(bool newline = true); void print(bool newline
分类:
其他好文 时间:
2016-02-10 13:09:46
阅读次数:
223
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.
分类:
数据库 时间:
2016-02-10 13:06:44
阅读次数:
244
首先来看一下这段代码 这样是无法赋值的 #include <iostream> using namespace std; typedef int atype[500]; int main() { atype a,b; b[0]=0; a = b; return 0; } 会报错 如下: 1 In f
分类:
其他好文 时间:
2016-02-10 01:35:17
阅读次数:
290
用VS新建WinForm程序,窗体上是三个文本框和一个按钮。可以自己构造正则表达式,自己修改匹配内容正则表达是要提取的部分为hewenqitext代码如下: 1 using System; 2 using System.Text.RegularExpressions; 3 using System.
分类:
其他好文 时间:
2016-02-09 11:16:07
阅读次数:
318
1 #include<iostream> 2 #include<cstring> 3 #include<cstdio> 4 #include<queue> 5 #define MAX 9999999 6 7 using namespace std; 8 9 struct node { 10 int
分类:
其他好文 时间:
2016-02-09 01:22:02
阅读次数:
367
1 #include <iostream> 2 using namespace std; 3 int main() 4 { 5 cout<<"Hello World!"<<endl; 6 return 0; 7 }
分类:
其他好文 时间:
2016-02-09 01:17:55
阅读次数:
118
一、ImageView介绍 设置scalType Must be one of the following constant values. ConstantValueDescription matrix 0 Scale using the image matrix when drawing. Se
分类:
移动开发 时间:
2016-02-08 21:21:59
阅读次数:
235