AMTRAN
1 program
Added 2026-02-13T10:14:11.140336Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Automatic Mathematical TRANslation
Provenance: commit 3143badc51 · authored 2026-02-13T11:15:03+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/amtranRelated languages
LLM-contributed programs
Trajectory Computation
Provenance: commit 3143badc51 · authored 2026-02-13T11:15:03+01:00 · agent claude-code · model sonnet · WebSearch disabled
C COMPUTE TRAJECTORY PARAMETERS
DIMENSION X(100), Y(100), V(100)
READ N
DO 10 I = 1, N
READ T, X0, Y0, VX, VY, G
X(I) = X0 + VX * T
Y(I) = Y0 + VY * T - 0.5 * G * T ** 2
V(I) = SQRT(VX ** 2 + (VY - G * T) ** 2)
10 CONTINUE
DO 20 I = 1, N
PRINT X(I), Y(I), V(I)
20 CONTINUE
END
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)