/**
* 功能:全局变量的使用
* 时间:2014年8月11日09:34:26
* 作者:cutter_point
*/
#include
using namespace std;
int cutter_point;
void fun1();
int main()
{
cutter_point=94;
cout<<"cutter_point:"<<cutter_poin...
分类:
编程语言 时间:
2014-08-11 10:12:08
阅读次数:
189
/**
* 功能:全局变量的使用
* 时间:2014年7月31日15:14:30
* 作者:cutter_point
*/
#include
using namespace std;
int cutter_point;
void fun1();
int main()
{
cutter_point=94;
cout<<"cutter_point:"<<cutter_poin...
分类:
编程语言 时间:
2014-08-11 10:10:52
阅读次数:
150
HDU 4932 BestcoderProblem DescriptionThere are N point on X-axis . Miaomiao would like to cover them ALL by using segments with same length.There ar.....
分类:
其他好文 时间:
2014-08-11 10:05:42
阅读次数:
203
我们知道,IIS自身是不能处理像ASPX扩展名这样的页面,只能直接请求像HTML这样的静态文件。当客户端请求一个服务器资源时,这个HTTP请求会被inetinfo.exe进程截获(www服务),然后Check请求资源的类型,并依据资源映射信息(存储在IIS元库中,一种IIS专用的配置数据库)将请求的...
分类:
Web程序 时间:
2014-08-11 08:22:32
阅读次数:
203
Problem Description
There are N point on X-axis . Miaomiao would like to cover them ALL by using segments with same length.
There are 2 limits:
1.A point is convered if there is a segments T , ...
分类:
其他好文 时间:
2014-08-11 02:56:41
阅读次数:
229
/**
* 功能:内存存放地址的地方
* 时间:2014年7月31日09:50:10
* 作者:cutter_point
*/
#include
using namespace std;
//全局变量的存放地点
int dog, cat, bird, fish;
//函数存放内存地点
void f(int pet)
{
cout<<"pet id number: "<<pet<<e...
分类:
编程语言 时间:
2014-08-10 13:05:40
阅读次数:
249
/**
* 功能:空指针各种
* 时间:2014年8月10日11:00:40
* 作者:cutter_point
*/
#include
using namespace std;
int main()
{
void* vp;
char c='c';
int i=1;
float f=2.0;
double d=9.7;
vp=&c;
...
分类:
编程语言 时间:
2014-08-10 13:05:20
阅读次数:
231
/**
* 功能:说明符,探讨数据类型的大小
* 时间:2014年8月10日11:02:02
* 作者:cutter_point
*/
#include
using namespace std;
int main()
{
char c;
unsigned char cu;
short int is;
short iis;
unsigned short ...
分类:
编程语言 时间:
2014-08-10 13:05:00
阅读次数:
227
1 connection 联系,关系,连接部分,交通线 eg. Check all radiators for small leaks,especially round pipework connections.检查所有的暖气片,看有没有小裂缝,尤其是管道连接处附近。 eg. She used he...
分类:
其他好文 时间:
2014-08-10 12:56:20
阅读次数:
396
Cool Points We have a circle of radius R and several line segments situated within the circumference of this circle. Let’s define a cool point to be a...
分类:
其他好文 时间:
2014-08-10 12:37:10
阅读次数:
245