How to resolve the algorithm FizzBuzz step by step in the Verbexx programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm FizzBuzz step by step in the Verbexx programming language

Table of Contents

Problem Statement

Write a program that prints the integers from   1   to   100   (inclusive).

But:

The   FizzBuzz   problem was presented as the lowest level of comprehension required to illustrate adequacy.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm FizzBuzz step by step in the Verbexx programming language

Source code in the verbexx programming language

@LOOP init:{@VAR t3 t5; @VAR i = 1} while:(i <= 100) next:{i++}
{
  t3 = (i % 3 == 0); 
  t5 = (i % 5 == 0);

  @SAY ( @CASE when:(t3 && t5) { 'FizzBuzz }
               when: t3        { 'Fizz     }
               when: t5        { 'Buzz     }
               else:           { i         }           
       );
};

  

You may also check:How to resolve the algorithm Narcissistic decimal number step by step in the Delphi programming language
You may also check:How to resolve the algorithm Loops/Infinite step by step in the bootBASIC programming language
You may also check:How to resolve the algorithm Magic squares of doubly even order step by step in the FreeBASIC programming language
You may also check:How to resolve the algorithm Old Russian measure of length step by step in the XPL0 programming language
You may also check:How to resolve the algorithm Loops/Continue step by step in the Vedit macro language programming language