Initial commit

This commit is contained in:
2025-11-06 10:29:13 +08:00
commit 0becd14830
318 changed files with 7145 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
graph TD
A[开始] --> B[初始化: 定义原始字符串];
B --> C[输出: 原始字符串];
C --> D{处理: 将所有 she 替换为 he};
D --> E{处理: 将所有 She 替换为 He};
E --> F[输出: 替换后的字符串];
F --> G[结束];