-
最新日志
存档页
- 2010年10月
- 2010年09月
- 2010年08月
- 2010年07月
- 2010年06月
- 2010年05月
- 2010年04月
- 2010年03月
- 2010年02月
- 2010年01月
- 2009年12月
- 2009年11月
- 2009年10月
- 2009年09月
- 2009年08月
- 2009年07月
- 2009年06月
- 2009年05月
- 2009年04月
- 2009年03月
- 2009年02月
- 2009年01月
- 2008年12月
- 2008年11月
- 2008年10月
- 2008年09月
- 2008年08月
- 2008年07月
- 2008年06月
- 2008年05月
- 2008年04月
- 2008年03月
- 2008年02月
- 2007年09月
- 2007年08月
- 2007年07月
- 2007年06月
- 2007年05月
- 2007年04月
- 2007年03月
- 2007年02月
- 2007年01月
- 2006年12月
- 2006年11月
- 2006年10月
- 2006年09月
- 2006年08月
- 2006年07月
- 2006年06月
- 2006年05月
- 2006年04月
- 2006年03月
分类
功能
Category Archives: 游戏
Love Maze
typedef struct{ int order; PosType Stage; int direction; }LoveElemType; Status MazePath (MazeType maze, PosType start, PosType end) { InitLove(s); curstage = start; curstep = 1; do { if (Pass(curstage)) { FootPrint (curstage); … 繼續閱讀
add.cpp
#include <stdio.h>#include <stdlib.h> class Add { int number,deduction,sum;public: Add(int initialNumber,int intialDeduction,int intialSum); ~Add(); void printSize(); void count(int time); }; Add::Add(int initialNumber,int intialDeduction,int intialSum) { printf("inside constructorn"); number=initialNumber; deduction=intialDeduction; sum=intialSum;} Add::~Add() { printf("inside destructorn"); printSize();} void Add::printSize() { printf("number is: %dn",number);} … 繼續閱讀