摘要: #include using namespace std;struct note{ int data; note *next;};class listprime{private: note *head;public: listprime(int n); void Del... 阅读全文