pseudolab
FOR i ← 1 TO n
DECLARE x : INTEGER
OUTPUT "Hello"
WHILE count < 10
IF score > 50
NEXT i
Cambridge IGCSE & A-Level Pseudocode Spec

Write pseudocode.
See it run.
Ace the exam.

The only IDE built specifically for Cambridge International pseudocode — with real-time execution, syntax highlighting, AI-powered feedback, and a built-in reference guide.

Start writing — it's freeWatch 2 min demo →
⚡ Editor
⊢_ Output
□ Reference
✦ AI Feedback
▶ Execute
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Cambridge IGCSE Grade CalculatorDECLARE score : INTEGERDECLARE grade : STRINGINPUT scoreIF score 90 THEN    grade "A*"ELSE IF score 70 THEN    grade "A"ELSE    grade "B"ENDIFOUTPUT "Grade: ", grade
AI Feedback7/10
⚠ Mark Scheme

Missing boundary case for scores between 0–69. Cambridge mark scheme awards 1 mark for handling this.

ELSE
  grade "C"
// Add for full marks
✓ Correct

Proper use of DECLARE before INPUT. Good indentation structure.