How to resolve the algorithm Loops/Downward for step by step in the ERRE programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Loops/Downward for step by step in the ERRE programming language

Table of Contents

Problem Statement

Write a   for   loop which writes a countdown from   10   to   0.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Loops/Downward for step by step in the ERRE programming language

Source code in the erre programming language

   FOR I%=10 TO 0 STEP -1 DO
     PRINT(I%)
   END FOR

  

You may also check:How to resolve the algorithm Faces from a mesh step by step in the Python programming language
You may also check:How to resolve the algorithm Binary search step by step in the Python programming language
You may also check:How to resolve the algorithm Play recorded sounds step by step in the Swift programming language
You may also check:How to resolve the algorithm Abstract type step by step in the 11l programming language
You may also check:How to resolve the algorithm Conditional structures step by step in the Rust programming language