C++编的车票管理系统《仅供参考!!》

#include<stdio.h> #include<time.h> #include<string.h> #include<stdlib.h>typedef struct information { int numb; char starttime[10]; char begin[21]; char end[21]; float lasttime; int canload; int alreadyload; struct information *next;}INFORMATION,*PINF; //结构体类型的指针INFORMATION *head; ...
2010-06-22 10:27 | 阅读 1657 次 | 评论 0 条