ALGOL-T
1 program
Added 2026-02-16T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: ALGOL T
Provenance: commit 051fdf187a · authored 2026-02-16T17:56:47+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
Provenance: commit 051fdf187a · authored 2026-02-16T17:56:47+01:00 · agent claude-code · model sonnet · WebSearch disabled
НАЧАЛО
ЦЕЛ N, I, F;
ВВОД(N);
F := 1;
ДЛЯ I := 1 ДО N ЦИКЛ
F := F * I
ВСЁ;
ВЫВОД(F)
КОНЕЦ