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,18 @@
flowchart TD
A[开始] --> B[定义 score = 55]
B --> C["switch(score / 10)"]
C --> D{case 0,1,2,3,4,5}
D -- 匹配 --> E[输出 score 分是D等]
C --> F{case 6}
F -- 匹配 --> G[输出 score 分是C等]
C --> H{case 7,8}
H -- 匹配 --> I[输出 score 分是B等]
C --> J{case 9,10}
J -- 匹配 --> K[输出 score 分是A等]
C --> L{default}
L -- 匹配 --> M[输出 数据错误]
E --> N[结束]
G --> N
I --> N
K --> N
M --> N