This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/ex8/ex8.cpp

9 lines
156 B
C++
Raw Normal View History

2021-11-18 12:44:57 +00:00
#include "queue.hpp"
2021-11-19 02:26:57 +00:00
#include "train.hpp"
2021-11-18 12:44:57 +00:00
#include <stdio.h>
int main()
{
Train T;
T.orgnize() ? T.Out() : printf("编组失败\n");
return 0;
}