From 48b958c4769282d6a9d4129fdf7b3ed7184b7835 Mon Sep 17 00:00:00 2001 From: Zengtudor Date: Sun, 1 Sep 2024 22:01:13 +0800 Subject: [PATCH] update --- 20240901/6261/6261.cpp | 22 ++++++++++++++++++++++ xmake.lua | 5 ++++- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 20240901/6261/6261.cpp diff --git a/20240901/6261/6261.cpp b/20240901/6261/6261.cpp new file mode 100644 index 0000000..a1b3be4 --- /dev/null +++ b/20240901/6261/6261.cpp @@ -0,0 +1,22 @@ +#include +#include + +void HLT(int n,char a,char b,char c){ + if(n==1){ + std::cout<"<"<"<"<>n>>a>>c>>b; + + HLT(n, a, b, c); +} \ No newline at end of file diff --git a/xmake.lua b/xmake.lua index 234c957..433a45f 100644 --- a/xmake.lua +++ b/xmake.lua @@ -35,4 +35,7 @@ target("P4089") add_files("20240830/P4089/P4089.cpp") target("P2661") - add_files("20240830/P2661/P2661.cpp") \ No newline at end of file + add_files("20240830/P2661/P2661.cpp") + +target("6261") + add_files("20240901/6261/6261.cpp") \ No newline at end of file