How to resolve the algorithm Loops/Downward for step by step in the Oberon-2 programming language
Published on 12 May 2024 09:40 PM
How to resolve the algorithm Loops/Downward for step by step in the Oberon-2 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 Oberon-2 programming language
Source code in the oberon-2 programming language
FOR i := 10 TO 0 BY -1 DO
Out.Int(i,0);
END;
You may also check:How to resolve the algorithm Find limit of recursion step by step in the Pascal programming language
You may also check:How to resolve the algorithm Narcissistic decimal number step by step in the Swift programming language
You may also check:How to resolve the algorithm Ordered words step by step in the Gambas programming language
You may also check:How to resolve the algorithm Aliquot sequence classifications step by step in the Scala programming language
You may also check:How to resolve the algorithm RIPEMD-160 step by step in the Scala programming language