Ask Question
25 June, 22:39

The following algorithm should output the t times table in the format:

1 x 8 = 8

2 x 8 = 16

3 x 8 = 24 ... (up to 12x)

Correct errors in the pseudocode and complete the output statement.

t = INT (INPUT ("Enter the times table you want to output:"))

FOR x = 1 TO 12

p = t * t output statement using p needed here

NEXT x

PRINT ()

+1
Answers (1)
  1. 26 June, 02:14
    0
    t = INT (INPUT ("Enter the times table you want to output:"))

    FOR x = 1 TO 12

    p = t * x

    PRINT (x + " * " + t + " = " + p)

    NEXT x
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “The following algorithm should output the t times table in the format: 1 x 8 = 8 2 x 8 = 16 3 x 8 = 24 ... (up to 12x) Correct errors in ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers