IFTRAN
1 program
Added 2026-02-11T10:30:00Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Interactive FORTRAN
Provenance: commit e47d6a9f77 · authored 2026-02-11T13:26:19+01:00 · agent claude-code-recovery · 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 e47d6a9f77 · authored 2026-02-11T13:26:19+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
C FACTORIAL CALCULATOR IN IFTRAN
PROGRAM FACTOR
INTEGER N, FACT, I
WRITE(6,100)
100 FORMAT(' ENTER N FOR FACTORIAL:')
READ(5,*) N
FACT = 1
DO 10 I = 1, N
FACT = FACT * I
10 CONTINUE
WRITE(6,200) N, FACT
200 FORMAT(' FACTORIAL OF ',I3,' IS ',I10)
STOP
END