main.cpp
Upload User: stella1212
Upload Date: 2022-08-06
Package Size: 567k
Code Size: 0k
Development Platform:

Visual C++

  1. #include<iostream>
  2. #include"introduction.h"
  3. #include"Train.h"
  4. using namespace std;
  5. int main()
  6. {
  7.     introduction();
  8. Train one_instance;
  9. while(one_instance.read())
  10. {
  11. if(!(one_instance.Railroad()))
  12. {
  13. cout<<"对不起,按照您的输入,无法进行后续的重排!"<<endl;
  14. }
  15. }
  16. system("pause");
  17. return 0;
  18. }