上一页 1 ··· 84 85 86 87 88 89 90 91 92 ··· 95 下一页
摘要: 也许很多C++的初学者都知道什么是构造函数,但是对复制构造函数(copy constructor)却还很陌生。对于我来说,在写代码的时候能用得上复制构造函数的机会并不多,不过这并不说明复制构造函数没什么用,其实复制构造函数能解决一些我们常常会忽略的问题。 为了说明复制构造函数作... 阅读全文
posted @ 2012-11-18 10:23 N3verL4nd 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Cow Bowling Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 11089 Accepted: 7256 Description The cows don't use actual bo... 阅读全文
posted @ 2012-11-17 16:27 N3verL4nd 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 跑了N多数据,还是没有找出错误点。。。。。。。。。。。。fuck #include #include #include #include using namespace std;int main(){ while(1) { FILE *fp; fp = fopen("E:\\ACM\\POJ... 阅读全文
posted @ 2012-11-17 16:09 N3verL4nd 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 声明: 1.这份列表当然不是我原创的,从文库里下载了一份,放到这里便于自己浏览和查找题目。 ※最近更新:Poj斜率优化题目 1180,2018,3709 列表一:经典题目题号: 容易: 1018, 1050, 1083, 1088, 1125, 1143, 1157, 1163... 阅读全文
posted @ 2012-11-17 14:58 N3verL4nd 阅读(128) 评论(0) 推荐(0) 编辑
摘要: #includetypedef struct{ char name[10]; int num; int age;}student;int main(){ student stuin,stuout; FILE *fp; if((fp=fopen("d:\\dat.txt","w+"))==NU... 阅读全文
posted @ 2012-11-16 18:45 N3verL4nd 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 多读一些优秀的书籍,对于开发者稳固编程基础、提高编程技能有很大帮助。但是,大多时候,初学者不知道应该读什么书入门,有一定基础的开发者不知道如何进阶。 本文总结了一个 C++ 优秀书籍清单,希望能够为你带来一定的帮助。这些书大多数都有中文版,并且可以很容易在网上找到。 阶段 1 《Esse... 阅读全文
posted @ 2012-11-16 18:41 N3verL4nd 阅读(127) 评论(0) 推荐(0) 编辑
摘要: The Triangle Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 30728 Accepted: 18184 Description 73 88 1 02 7 4 ... 阅读全文
posted @ 2012-11-16 16:34 N3verL4nd 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Function Run Fun Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 13471 Accepted: 7014 Description We all love recursion! ... 阅读全文
posted @ 2012-11-15 18:10 N3verL4nd 阅读(99) 评论(0) 推荐(0) 编辑
摘要: Seeding Time Limit: 2 Seconds Memory Limit: 65536 KB It is spring time and farmers have to plant seeds in the field. Tom has a nice field, wh... 阅读全文
posted @ 2012-11-15 15:55 N3verL4nd 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 小学弟的一个问题,不错额 #includevoid main(){char *ch1[5];int i;char **p;p=ch1;for(i=0;i#includeint main(){ char *ch1[2]; int i; char **p; p=ch1; for(i=0;iusing... 阅读全文
posted @ 2012-11-14 21:26 N3verL4nd 阅读(564) 评论(0) 推荐(0) 编辑
上一页 1 ··· 84 85 86 87 88 89 90 91 92 ··· 95 下一页