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 @@
flowchart TD
A[开始] --> B[定义半径 radius = 3.0]
B --> C[计算周长 circumference = 2 * Math.PI * radius]
C --> D[计算面积 area = Math.PI * radius * radius]
D --> E[输出圆的周长]
E --> F[输出圆的面积]
F --> G[结束]