自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

CNnumen

If i want, i must try...

  • 博客(7)
  • 资源 (4)
  • 收藏
  • 关注

原创 POJ_2453

简单题, 熟悉系统... #include #define RADIX 2int calOneCount(int val){ int temp = val; int count = 0; int preBit = 0; while(temp) { preBit = temp % RADIX; temp /= RADIX; if(preBit

2010-03-31 17:31:00 817

原创 POJ_3100

熟悉系统...#include #include int main(){ int iB, iN, iA = 1; int preDis = 0; int curDis = 0; int flag = 1; while(scanf("%d%d", &iB, &iN) && !(iB == 0 && iN == 0)) { preDis = abs(iB -

2010-03-31 15:55:00 987

原创 POJ_1004

熟悉系统...  #include #define MONTH_COUNT 12int main(){float average = 0.0;float sum = 0.0;int i = 0;float inCome = 0.0;for(; i<MONTH_COUNT; i++){scanf("%f", &inCome);sum += i

2010-03-31 13:21:00 670

原创 POJ_1003

熟悉系统... #include #define PRECISION 0.001int main(){ float length = 0.0; float i = 2.0; float sum = 0.0; while(scanf("%f", &length) && length != 0.00) { i = 2.0; sum = 0.0;

2010-03-31 12:23:00 899

原创 POJ_1000

第一道题, 熟悉系统...#include int main(){ int a, b; scanf("%d%d", &a, &b); printf("%d/n", a + b); return 0;} 

2010-03-31 12:21:00 1710

原创 just a demo...

 /*.h文件,文件名为CMyString.h*/#ifndef _MY_STRING_H__#define _MY_STRING_H__#include #include class MyString1{public:MyString1();MyString1(char *chars);MyString1(char chars[], int size)

2010-03-04 15:53:00 779

原创 矩阵的输入输出demo code...

#include #include #include /*函数声明*//*为矩阵分配空间并且初始化为0*/void allocMemAndInit(int ***matrixName, int rowNum, int columnNum);/*释放空间*/void deallocMem(int **matrixName, int rowNum, int columnNu

2010-03-03 07:51:00 1877

高效程序员的45个习惯-读书笔记

自己总结的《高效程序员的45个习惯》,把书中自己感觉较好的段落摘抄下来,稍稍加了点自己的想法,挺好的...

2011-03-18

Qt 很好的例子, 可以参考下哈

在maemo下用qt开发很好的例子, qt的动画效果等

2010-05-22

Symbian C++ 实例源码

Edition5 实例

2009-07-28

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除