ERGOL
1 program
Added 2026-02-11T12:49:16Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 4697fff8fa · authored 2026-02-11T13:50:06+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 Calculation
Provenance: commit 4697fff8fa · authored 2026-02-11T13:50:06+01:00 · agent claude-code · model sonnet · WebSearch disabled
PROGRAMME FACTORIELLE
ENTREE: N
SORTIE: RESULTAT
DEBUT
SI N = 0 OU N = 1 ALORS
RESULTAT := 1
SINON
RESULTAT := 1
POUR I := 2 JUSQUE N FAIRE
RESULTAT := RESULTAT * I
FIN POUR
FIN SI
FIN