JJ
1 program
Added 2026-03-05T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: Junior Java
Provenance: commit cff96aa127 · authored 2026-03-05T09:47:43+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/starand-and-jjRelated languages
LLM-contributed programs
Gross Pay Calculator
Provenance: commit cff96aa127 · authored 2026-03-05T09:47:43+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
// Name Ann Onymous
// Does simple gross pay
int pay, hours;
JJS.outputString ("Enter the hours ");
JJS.inputInt (hours);
JJS.outputInt(hours);
if (hours < 40) {
pay = 10 * hours;
} else {
pay = 400 + 15 * (hours - 40);
}//end if
JJS.outputString ("The gross pay is ");
JJS.outputlnInt (pay);
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.)