跟着敲代码,ok
#include <stdlib.h>
#include "List.h"
using namespace std;
/*线性表*/
int main()
{
Coordinate e1(3,5);
Coordinate e2(2,6);
Coordinate e3(8,4);
system("pause");
return 0;
}
#include <stdlib.h>
#include "List.h"
using namespace std;
/*线性表*/
int main()
{
Coordinate e1(3,5);
Coordinate e2(2,6);
Coordinate e3(8,4);
system("pause");
return 0;
}
2016-11-02