Rename flowcharts

This commit is contained in:
2021-12-13 11:26:05 -06:00
parent ada5fc4db6
commit ef6db4b23b
4 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
```mermaid
graph TD;
A[AlgorithmTester]
A --> |make random number file| B[Enter file name]
B --> F[How many numbers?]
F --> G[Maximum number?]
G --> H[Minimum number?] --> |write file|A
A --> |sort random number file| K[Enter file name]
K --> C[choose sorting algorithms]
C --> D[Print the numbers?]
D --> |print sorting results|A
A --> |exit| J[Exit program]