JOSS I
1 program
Added 2026-02-10T22:57:26Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: JOSS 1
Provenance: commit 8bc3c02a83 · authored 2026-02-11T13:26:21+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
Quadratic Equation Solver
Provenance: commit 8bc3c02a83 · authored 2026-02-11T13:26:21+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
1.1 Type "Quadratic equation solver"
1.2 Type "Enter A, B, C"
1.3 Demand A, B, C
1.4 Set D = B*B - 4*A*C
1.5 If D < 0, go to step 2.1
1.6 Set X1 = (-B + sqrt(D)) / (2*A)
1.7 Set X2 = (-B - sqrt(D)) / (2*A)
1.8 Type "X1 =", X1, "X2 =", X2
1.9 Stop
2.1 Type "No real roots"
2.2 Stop