IDNLearn.com: Your trusted platform for finding reliable answers. Join our community to receive prompt and reliable responses to your questions from knowledgeable professionals.
Answer:
BEGIN
SET count = 1
WHILE count <= 12 THEN
INPUT length
perimeter = length * length
PRINT perimeter
END WHILE
END
Explanation:
You can also set count to 0 and in while loop use count < 12 to loop just 12 times just as above