Concept Flow - Number literal formats (underscore, hex, binary)
Start
Read number literal
Check for underscores
| Yes
Ignore underscores
Check for prefix
Parse as hex
Parse as decimal
Store value
End
The program reads a number literal, ignores underscores, detects if it's hex or binary by prefix, parses accordingly, and stores the value.