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
2021-11-19 10:26:57 +08:00

9 lines
156 B
C++

#include "queue.hpp"
#include "train.hpp"
#include <stdio.h>
int main()
{
Train T;
T.orgnize() ? T.Out() : printf("编组失败\n");
return 0;
}