首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴蓝天绿水的代码贴C语言
#include <iostream.h>
#include <string.h>
#include <stdlib.h>
using namespace std;

class node
{
friend class linklist;
private:
                enum{len=64}
long int ID;
char Name[len];
......................
阅读全部 | 2017年9月16日 22:20
1
蓝天绿水