码迷,mamicode.com
首页 >  
搜索关键字:point    ( 7079个结果
【ThinkingInC++】10、全局变量的使用
/** * 功能:全局变量的使用 * 时间: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
【ThinkingInC++】11、外部变量
/** * 功能:全局变量的使用 * 时间: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
Miaomiao's Geometry
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
BestCoder Round #4 Miaomiao's Geometry (暴力)
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
【ThinkingInC++】6、内存存放地址的地方
/** * 功能:内存存放地址的地方 * 时间: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
【ThinkingInC++】7、空指针
/** * 功能:空指针各种 * 时间: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
【ThinkingInC++】8、说明符,探讨数据类型的大小
/** * 功能:说明符,探讨数据类型的大小 * 时间: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
UVA 11355 Cool Points
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
渐变背景(background)效果
chrom and Safari浏览器: webkit核心的浏览器,使用CSS3渐变方法(css-gradient) -webkit-gradient(type, start_point, end_point, / stop...) -webkit-gradient(type, inner_center, inner_radius, outer_center, outer...
分类:其他好文   时间:2014-08-10 10:28:20    阅读次数:309
HDU 2912
直线关于球的多次反射,求最后一次反射点#include #include #include #include #include using namespace std;const double inf=1e10;const double eps=1e-8;struct point { doub...
分类:其他好文   时间:2014-08-10 10:17:10    阅读次数:360
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!