Try Inputs
Logic: ≥75 Distinction, ≥60 First, ≥40 Pass else Fail
1:+ 2:- 3:* 4:/
Shows simple if and if-else decisions.
Shows output of 1..n for different loops.
goto is shown conceptually (JS doesn’t support goto).
Flowchart View
if–else Ladder (Grade)
Enter marks and click “Run Ladder” to highlight the path.
switch (Calculator Menu)
Enter choice 1–4 and click “Run Switch”.
if / if-else (Number Check)
Enter a number and click “Run If/Else”.
Simple if (positive?)
if-else (even/odd)
Looping (while / do-while / for)
Enter n and click “Run Loops” to see outputs.
while
Entry-controlled
do-while
Executes at least once
for
Known iterations
Branching (break / continue / goto)
Click buttons to see how flow changes. (goto shown conceptually)
break demo
continue demo
goto concept
Output
Ready. Enter values and click buttons.