Baklava in Ti Basic

Published on 01 February 2025 (Updated: 01 February 2025)

Welcome to the Baklava 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,0,20)
    abs(10-N)->S
    21-2*S->T
    ""->Str1
    For(I,1,S)
        Str1+" "->Str1
    End
    For(I,1,T)
        Str1+"*"->Str1
    End
    Disp Str1
End

Baklava 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.