Fizz Buzz in Ti Basic

Published on 28 October 2024 (Updated: 28 October 2024)

Welcome to the Fizz Buzz in Ti Basic page! Here, you'll find the source code for this program as well as a description of how the program works.

Current Solution

For(N,1,100)
    If remainder(N,15)=0 Then Disp("FizzBuzz")
    Else
        If remainder(N,3)=0 Then Disp("Fizz")
        Else
            If remainder(N,5)=0 Then Disp("Buzz")
            Else Disp(N)
            End
        End
    End
End

Fizz Buzz in Ti Basic was written by:

If you see anything you'd like to change or update, please consider contributing.

How to Implement the Solution

No 'How to Implement the Solution' section available. Please consider contributing.

How to Run the Solution

No 'How to Run the Solution' section available. Please consider contributing.