how to add numbers in pseudocode code example
Example: how to add numbers in pseudocode
BEGIN;
INPUT Num1;
INPUT Num2;
Total = Num1 + Num2;
DISPLAY Total,
END;
BEGIN;
INPUT Num1;
INPUT Num2;
Total = Num1 + Num2;
DISPLAY Total,
END;