摘要: 该课程内容属于PHP语言学习中的中级课程,只要有基本的php语法基础,四小时内上完这门课程绰绰有余。学习PHP面向对象编程,为我们进一步学习更高级的课程打下基础,如后台框架、微信后台的二次开发的学习等等。 课程链接:《PHP面向对象高级实践》 以下是课程的基本内容: 继承、访问控制、Sta... 阅读全文
posted @ 2015-12-05 09:01 constructora 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 因为我的版本时64 位的,搜寻到两种方法。方法一、首先,我去了http://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_nightly_build_on_Ubuntu进行到环境编译器的配置的时候一切正常,但是:1. Get ... 阅读全文
posted @ 2015-04-18 02:10 constructora 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 首先需要说明,mentohust 和锐捷一样,都依赖 libpcap 这个函数库。 而配置libpcap 前,需要安装GCC、GNU M4 、 flex 、bison,不然就会报错 (以下均以 root 身份执行) 1.安装GCC Ubuntu默认安装了GCC,但是按照参考文献(1)需要安装 sud 阅读全文
posted @ 2015-04-17 14:19 constructora 阅读(679) 评论(0) 推荐(0) 编辑
摘要: Problem Link 阅读全文
posted @ 2015-03-06 19:42 constructora 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Problem Link 阅读全文
posted @ 2015-03-06 15:44 constructora 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Problem Link 阅读全文
posted @ 2015-03-06 14:56 constructora 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Problem Link A. Almost Prime time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output A. Almost P 阅读全文
posted @ 2015-03-06 14:40 constructora 阅读(410) 评论(0) 推荐(0) 编辑
摘要: B. Drazil and His Happy Friends time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Drazil h 阅读全文
posted @ 2015-02-25 20:56 constructora 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 分数化小数(decimal) 白书习题 2-5 3 输入正整数 a , b , c , 输出 a/b 的小数形式,精确到小数点后 c 位 .a,b 7 int main() 8 { 9 int a,b,c,y; //y用来存储 a/b 的余数 10 while(scanf("%d%d%d",&a,&b,&c) != EOF) 11 { 1... 阅读全文
posted @ 2015-01-29 12:23 constructora 阅读(265) 评论(0) 推荐(0) 编辑
摘要: /* 《算法竞赛入门经典第二版》 P35 习题2-4; 输入两个正整数 n int main() { int m,n,i,j=1; while(scanf("%d%d",&m,&n) != EOF) { double sum = 0; if(m==0 && n==0) return ... 阅读全文
posted @ 2015-01-28 23:16 constructora 阅读(447) 评论(0) 推荐(0) 编辑