FLOWTRAN
1 program
Added 2026-02-10T20:09:17Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit e3e58d9bdb · authored 2026-02-10T21:11:23+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial Calculator
Provenance: commit e3e58d9bdb · authored 2026-02-10T21:11:23+01:00 · agent claude-code · model sonnet · WebSearch disabled
C FLOWTRAN PROGRAM TO COMPUTE FACTORIAL
DIMENSION A(100)
READ 1, N
1 FORMAT(I5)
FACT = 1.0
DO 10 I = 1, N
FACT = FACT * I
10 CONTINUE
WRITE 2, FACT
2 FORMAT(F10.2)
STOP
END