初始化第三题

This commit is contained in:
2024-10-24 00:36:13 +08:00
parent 1001844a83
commit 58bf747395
2 changed files with 12 additions and 0 deletions
+3
View File
@@ -10,3 +10,6 @@ add_executable(test1
add_executable(test2 test2.cpp add_executable(test2 test2.cpp
SeqQueue.cpp SeqQueue.cpp
SeqQueue.h) SeqQueue.h)
add_executable(test3 test3.cpp
SeqQueue.cpp
SeqQueue.h)
+9
View File
@@ -0,0 +1,9 @@
//test3.cpp
#include<iostream>
#include"SeqQueue.h"
using namespace std;
int main() {
return 0;
}