初始化第二题

This commit is contained in:
2024-10-23 21:30:59 +08:00
parent ff38d0b314
commit 5e209ccb18
5 changed files with 12 additions and 0 deletions
+1
View File
@@ -7,3 +7,4 @@ add_executable(test1
Stack.h
Stack.cpp
test1.cpp)
add_executable(test2 test2.cpp)
+1
View File
@@ -1,3 +1,4 @@
//Stack.cpp
#include "Stack.h"
#include<iostream>
+1
View File
@@ -1,3 +1,4 @@
//Stack.h
#ifndef STACK_H
#define STACK_H
+1
View File
@@ -1,3 +1,4 @@
//test1.cpp
#include"Stack.h"
#include<iostream>
using namespace std;
+8
View File
@@ -0,0 +1,8 @@
//test2.cpp
#include<iostream>
using namespace std;
int main() {
return 0;
}